Evaluate and Publish properties of test methods changed to stateless functions Evaluate(test) and Publish(test), this fixes results, version 1.5.107
This commit is contained in:
+2
-2
@@ -13,8 +13,8 @@ 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 { get { return false; } }
|
||||
public bool Publish { get { return false; } }
|
||||
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 TestMethod()
|
||||
|
||||
Reference in New Issue
Block a user