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

CanUseStandardDynamicProxyInterceptorsOnServices() private method

private CanUseStandardDynamicProxyInterceptorsOnServices ( ) : void
return void
		public void CanUseStandardDynamicProxyInterceptorsOnServices()
		{
			Assert.AreEqual(0, LoggingInterceptor.Calls.Count);
			client.GetValueFromConstructor();
			Assert.AreEqual(1, LoggingInterceptor.Calls.Count);
		}