Summary description for PrintTreeVisitor.
Наследование: DepthFirstVisitor
Пример #1
0
		public void GenerateGlobalMixinsAndInterceptors()
		{
			AspectParser parser = CreateParser(
				"import XPTO " + 
				"import XY in My.Assembly " + 
				" " + 
				" interceptors [ \"key\" : MyType in MyAssembly; \"key2\" : MyTypeThatMustBeResolved ] " + 
				" mixins [ \"key\" : MyType in MyAssembly; \"key2\" : MyTypeThatMustBeResolved ] " + 
				" " + 
				" " + 
				" ");
			EngineConfiguration conf = parser.Parse();
			
			XmlTreeVisitor visitor = new XmlTreeVisitor();
			visitor.Visit( conf );
			String content = visitor.Document.InnerXml;
			Assert.AreEqual( "<configuration>" + 
				"<import namespace=\"XPTO\" />" + 
				"<import namespace=\"XY\" assembly=\"My.Assembly\" />" +
				"<mixins><mixin key=\"key\" type=\"MyType\" refTypeEnum=\"Type\" assembly=\"MyAssembly\" />" +
				"<mixin key=\"key2\" type=\"MyTypeThatMustBeResolved\" refTypeEnum=\"Type\" />" +
				"</mixins><interceptors>" +
				"<interceptor key=\"key\" type=\"MyType\" refTypeEnum=\"Type\" assembly=\"MyAssembly\" />" +
				"<interceptor key=\"key2\" type=\"MyTypeThatMustBeResolved\" refTypeEnum=\"Type\" />" + 
				"</interceptors></configuration>", content );
		}
Пример #2
0
		public void GenerateImports()
		{
			AspectParser parser = CreateParser(
				"import XPTO " + 
				"import XY in My.Assembly ");
			EngineConfiguration conf = parser.Parse();
			
			XmlTreeVisitor visitor = new XmlTreeVisitor();
			visitor.Visit( conf );
			String content = visitor.Document.InnerXml;
			Assert.AreEqual( "<configuration>" + 
			 	"<import namespace=\"XPTO\" />" + 
			 	"<import namespace=\"XY\" assembly=\"My.Assembly\" />" + 
			 	"</configuration>", content );
		}
Пример #3
0
		public void GenerateAspectWithIncludes()
		{
			AspectParser parser = CreateParser(
				"import XPTO " + 
				"import XY in My.Assembly " + 
				" " + 
				" aspect McBrother for MyType in MyAssembly " + 
				"   include \"key\"" + 
				"   include MyType in MyAssembly" + 
				" end" + 
				" ");
			EngineConfiguration conf = parser.Parse();
			
			XmlTreeVisitor visitor = new XmlTreeVisitor();
			visitor.Visit( conf );
			String content = visitor.Document.InnerXml;
			Assert.AreEqual( "<configuration>" +
				"<import namespace=\"XPTO\" />" +
				"<import namespace=\"XY\" assembly=\"My.Assembly\" />" +
				"<aspect name=\"McBrother\"><for>" +
				"<singletype type=\"MyType\" refTypeEnum=\"Type\" assembly=\"MyAssembly\" />" +
				"</for>" +
				"<mixin type=\"key\" refTypeEnum=\"Link\" />" +
				"<mixin type=\"MyType\" refTypeEnum=\"Type\" assembly=\"MyAssembly\" />" +
				"</aspect></configuration>", content );
		}
Пример #4
0
		public void GenerateAspectWithPointcuts()
		{
			AspectParser parser = CreateParser(
				"import XPTO " + 
				"import XY in My.Assembly " + 
				" " + 
				" aspect McBrother for MyType in MyAssembly " + 
				" " + 
				"   pointcut method(*)" + 
				"     advice(MyType)" + 
				"   end" + 
				" " + 
				" end" + 
				" ");
			EngineConfiguration conf = parser.Parse();
			
			XmlTreeVisitor visitor = new XmlTreeVisitor();
			visitor.Visit( conf );
			String content = visitor.Document.InnerXml;
			Assert.AreEqual( "<configuration>" +
				"<import namespace=\"XPTO\" />" +
				"<import namespace=\"XY\" assembly=\"My.Assembly\" />" +
				"<aspect name=\"McBrother\">" +
				"<for><singletype type=\"MyType\" refTypeEnum=\"Type\" assembly=\"MyAssembly\" />" +
				"</for>" +
				"<pointcut symbol=\"Method\"><signature>(*)</signature>" +
				"<interceptor type=\"MyType\" refTypeEnum=\"Type\" />" +
				"</pointcut></aspect></configuration>", content );
		}