'Config', 'Results' projects added, includes iPerl opto logging bug-fixes, builds OK, cannot open DB, version 2.0.158.

This commit is contained in:
Milan Hanajik
2015-12-05 14:18:36 +01:00
parent 29ece2f91c
commit f6cec9d769
360 changed files with 6406 additions and 4091 deletions
@@ -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);
}