Exemplo n.º 1
0
        protected override void ExecuteTask()
        {
            Level old = Project.Threshold;
            AssignLogLevel(Level.Debug);

            var runner = new NPlantRunner(this, () => new NAntRunnerRecorder(this, this.Property, this.Delimiter));
            runner.Run();

            AssignLogLevel(old);
        }
 public void Create_SampleDiagrams()
 {
     var options = new NPlantRunnerOptions();
     var runner = new NPlantRunner(options, () => new TraceRecorder());
     runner.Run();
 }
Exemplo n.º 3
0
 public static void Main()
 {
     var options = new NPlantRunnerOptions();
     var runner = new NPlantRunner(options, () => new TraceRecorder());
     runner.Run();
 }