Beispiel #1
0
        public virtual void Convert(Harness harness)
        {
            var target = new BCLTarget()
            {
                Harness       = harness,
                MonoPath      = harness.MONO_PATH,
                TestName      = Name,
                WatchMonoPath = harness.WATCH_MONO_PATH
            };

            target.Convert();
        }
Beispiel #2
0
 void CreateBCLProjects()
 {
     foreach (var bclTest in BclTests)
     {
         var target = new BCLTarget()
         {
             Harness       = this,
             MonoPath      = MONO_PATH,
             WatchMonoPath = WATCH_MONO_PATH,
             TestName      = bclTest,
         };
         target.Convert();
     }
 }