AspectSharp.Lang.Tests.SemanticAnalizerTestCase.ValidPointcutsWithNameArgumentsAndRetType C# (CSharp) Method

ValidPointcutsWithNameArgumentsAndRetType() private method

private ValidPointcutsWithNameArgumentsAndRetType ( ) : void
return void
		public void ValidPointcutsWithNameArgumentsAndRetType()
		{
			String content = "aspect McBrother for X " +
				"  pointcut method(string Name(string, int)) " +
				"  end " +
				" " + 
				"  pointcut method(String Name(int, int)) " +
				"  end " +
				"end";

			Analize( CreateEngineConfiguration( content ) );
			Assert.IsFalse(_context.HasErrors);
		}