public void TestWithTry ()
		{
			var sut = new TransactionsExample ();
			sut.WithTry ();

			Assert.IsTrue (sut.IsHit);
		}
		public void TestWithUsing ()
		{
			var sut = new TransactionsExample ();
			sut.WithUsing ();

			Assert.IsFalse (sut.IsHit);
		}
        public void TestWithTry()
        {
            var sut = new TransactionsExample();

            sut.WithTry();

            Assert.IsTrue(sut.IsHit);
        }
        public void TestWithUsing()
        {
            var sut = new TransactionsExample();

            sut.WithUsing();

            Assert.IsFalse(sut.IsHit);
        }