AjTalk.Tests.Transactions.TransactionObjectTests.GetValuesInTransactionAndCommit C# (CSharp) 메소드

GetValuesInTransactionAndCommit() 개인적인 메소드

private GetValuesInTransactionAndCommit ( ) : void
리턴 void
        public void GetValuesInTransactionAndCommit()
        {
            this.manager.BeginTransaction();
            this.trobj[0] = 10;
            this.trobj[1] = 20;
            this.trobj[2] = 30;
            Assert.AreEqual(10, this.trobj[0]);
            Assert.AreEqual(20, this.trobj[1]);
            Assert.AreEqual(30, this.trobj[2]);
            this.manager.CommitTransaction();
            Assert.AreEqual(10, this.trobj[0]);
            Assert.AreEqual(20, this.trobj[1]);
            Assert.AreEqual(30, this.trobj[2]);
        }