AspectSharp.Tests.OptimizationTestCase.InterceptAll C# (CSharp) Method

InterceptAll() private method

private InterceptAll ( ) : void
return void
		public void InterceptAll()
		{
			String contents = "import AspectSharp.Tests.Classes in AspectSharp.Tests " + 
				" " + 
				" aspect MyAspect for ComplexClass " + 
				"   " + 
				"   pointcut method|property(*)" + 
				"     advice(AspectSharp.Tests.Classes.LogInvocationInterceptor)" + 
				"   end" + 
				"   " + 
				" end ";

			AspectEngineBuilder builder = new AspectLanguageEngineBuilder(contents);
			AspectEngine engine = builder.Build();
			WrapAndInvokeEverything(engine);
		}