示例#1
0
 public void Transformations_TransformationEngine_ProcessT1_4()
 {
     TransformationEngine.Process <string>("a", context);
     Assert.IsTrue(pattern.Finished);
     Assert.AreEqual(context, pattern.Context);
 }
示例#2
0
 public void Transformations_TransformationEngine_ProcessT1_3()
 {
     TransformationEngine.Process <string>("a", null as TransformationContext);
 }
示例#3
0
 public void Transformations_TransformationEngine_ProcessT2_6()
 {
     TransformationEngine.Process <string, string>("a", "a", context, new TestRuleT2());
 }
示例#4
0
 public void Transformations_TransformationEngine_ProcessT1_2()
 {
     TransformationEngine.Process <string>("a", transformation);
     Assert.IsTrue(pattern.Finished);
 }
示例#5
0
 public void Transformations_TransformationEngine_ProcessT2_1()
 {
     TransformationEngine.Process <string, string>("a", "a", null as Transformation);
 }