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

ValidPointcutsWithName() private method

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

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