AsyncPoco.Tests.Tests.Transaction_nested_yy C# (CSharp) Method

Transaction_nested_yy() private method

private Transaction_nested_yy ( ) : System.Threading.Tasks.Task
return System.Threading.Tasks.Task
		public async Task Transaction_nested_yy()
		{
			using (var scope1 = await db.GetTransactionAsync())
			{
				await InsertRecordsAsync(10);

				using (var scope2 = await db.GetTransactionAsync())
				{
					await InsertRecordsAsync(10);
					scope2.Complete();
				}

				scope1.Complete();
			}

			Assert.AreEqual(await GetRecordCountAsync(), 20);
		}