AjTalk.Tests.Transactions.TransactionObjectTests.GetValuesInTransaction C# (CSharp) Method

GetValuesInTransaction() private method

private GetValuesInTransaction ( ) : void
return void
        public void GetValuesInTransaction()
        {
            this.manager.BeginTransaction();
            Assert.AreEqual(1, this.trobj[0]);
            Assert.AreEqual(2, this.trobj[1]);
            Assert.AreEqual(3, this.trobj[2]);
            this.manager.RollbackTransaction();
        }