Castle.Facilities.WcfIntegration.Tests.WcfServiceFixture.WillApplyEndPointBehaviors C# (CSharp) Method

WillApplyEndPointBehaviors() private method

private WillApplyEndPointBehaviors ( ) : void
return void
		public void WillApplyEndPointBehaviors()
		{
			Assert.IsFalse(UnitOfWork.initialized, "Should be false before starting");
			bool unitOfWorkIsInitialized_DuringCall = client.UnitOfWorkIsInitialized();
			Assert.IsTrue(unitOfWorkIsInitialized_DuringCall);
			Assert.IsFalse(UnitOfWork.initialized, "Should be false after call");
		}