Arc.Unit.Tests.Infrastructure.Data.NHibernate.TransactionTests.Transaction_should_be_active_when_its_started C# (CSharp) Method

Transaction_should_be_active_when_its_started() private method

private Transaction_should_be_active_when_its_started ( ) : void
return void
        public void Transaction_should_be_active_when_its_started()
        {
            _transaction.Stub(x => x.IsActive).Return(true);

            var actual = CreateSUT().IsActive;

            Assert.That(actual, Is.True);
        }