'Config', 'Results' projects added, includes iPerl opto logging bug-fixes, builds OK, cannot open DB, version 2.0.158.
This commit is contained in:
+5
-4
@@ -5,6 +5,7 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using log4net;
|
||||
using Config.Entities;
|
||||
using TBF.BenchControl;
|
||||
|
||||
namespace TBF.BenchControl.TestMethods.FlyingStartCollectionMethod
|
||||
@@ -16,7 +17,7 @@ namespace TBF.BenchControl.TestMethods.FlyingStartCollectionMethod
|
||||
|
||||
readonly TestMethodCfg testMethodCfg;
|
||||
|
||||
public bool Evaluate(Entities.Test test)
|
||||
public bool Evaluate(Test test)
|
||||
{
|
||||
TestParams tp = new TestParams();
|
||||
foreach (var tstPrms in test.MoreParams)
|
||||
@@ -30,7 +31,7 @@ namespace TBF.BenchControl.TestMethods.FlyingStartCollectionMethod
|
||||
return true;
|
||||
}
|
||||
|
||||
public bool Publish(Entities.Test test)
|
||||
public bool Publish(Test test)
|
||||
{
|
||||
TestParams tp = new TestParams();
|
||||
foreach (var tstPrms in test.MoreParams)
|
||||
@@ -44,7 +45,7 @@ namespace TBF.BenchControl.TestMethods.FlyingStartCollectionMethod
|
||||
return true;
|
||||
}
|
||||
|
||||
public bool CanTest(Entities.MetersKind meters) { return meters == Entities.MetersKind.Single; }
|
||||
public bool CanTest(MetersKind meters) { return meters == MetersKind.Single; }
|
||||
|
||||
public TestMethod()
|
||||
{
|
||||
@@ -57,7 +58,7 @@ namespace TBF.BenchControl.TestMethods.FlyingStartCollectionMethod
|
||||
log.Debug(this.ToString());
|
||||
}
|
||||
|
||||
public IList<Event> Execute(Entities.Test test)
|
||||
public IList<Event> Execute(Test test)
|
||||
{
|
||||
return (new FlyingStartCollectionMethodSeq()).Execute(test, testMethodCfg.TestParams);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user