'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
@@ -4,6 +4,7 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using log4net;
|
||||
using Config.Entities;
|
||||
using TBF.BenchControl;
|
||||
|
||||
namespace TBF.BenchControl.TestMethods.ReferenceFlowmeterCalibration
|
||||
@@ -13,9 +14,9 @@ namespace TBF.BenchControl.TestMethods.ReferenceFlowmeterCalibration
|
||||
private static readonly ILog log = LogManager.GetLogger(typeof(TestMethod));
|
||||
public override string ToString() { return string.Format("TestMethods.ReferenceFlowmeterCalibration({0})", Cfg.ToString(1)); }
|
||||
|
||||
public bool Evaluate(Entities.Test test) { return false; }
|
||||
public bool Publish(Entities.Test test) { return false; }
|
||||
public bool CanTest(Entities.MetersKind meters) { return true; }
|
||||
public bool Evaluate(Test test) { return false; }
|
||||
public bool Publish(Test test) { return false; }
|
||||
public bool CanTest(MetersKind meters) { return true; }
|
||||
|
||||
public TestMethod()
|
||||
{
|
||||
@@ -27,7 +28,7 @@ namespace TBF.BenchControl.TestMethods.ReferenceFlowmeterCalibration
|
||||
log.Debug(this.ToString());
|
||||
}
|
||||
|
||||
public IList<Event> Execute(Entities.Test test)
|
||||
public IList<Event> Execute(Test test)
|
||||
{
|
||||
return (new ReferenceFlowmeterCalibrationSeq()).Execute(test);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user