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

IncludingTheSameMixinTwice() private method

private IncludingTheSameMixinTwice ( ) : void
return void
		public void IncludingTheSameMixinTwice()
		{
			String content = "aspect McBrother for X " +
				"include Customer " +
				"include Author " +
				"include Customer " +
				"end";

			Analize( CreateEngineConfiguration( content ) );
			Assert.IsTrue(_context.HasErrors);
			AssertOutput("You shouldn't include the same mixin more than one time;");
		}