FlyingStartCollectionMethod test parameters bool Evaluate and bool Publish added, ver.1.5.90.

This commit is contained in:
Milan Hanajik
2015-08-22 06:24:00 +02:00
parent 46b17fddc8
commit f75138eced
8 changed files with 153 additions and 6 deletions
@@ -1,5 +1,6 @@
///
/// Copyright (c) 2013-2015 Sensus Metering Systems
/// Author: Milan Hanajík
///
using System;
using System.Collections.Generic;
@@ -13,8 +14,10 @@ namespace TBF.BenchControl.TestMethods.FlyingStartCollectionMethod
private static readonly ILog log = LogManager.GetLogger(typeof(TestMethod));
public override string ToString() { return string.Format("TestMethods.FlyingStartCollectionMethod({0})", Cfg.ToString(1)); }
public bool Evaluate { get { return true; } }
public bool Publish { get { return true; } }
readonly TestMethodCfg testMethodCfg;
public bool Evaluate { get { return testMethodCfg.TestParams.Evaluate; } }
public bool Publish { get { return testMethodCfg.TestParams.Publish; } }
public bool CanTest(Entities.MetersKind meters) { return meters == Entities.MetersKind.Single; }
public TestMethod()
@@ -24,12 +27,13 @@ namespace TBF.BenchControl.TestMethods.FlyingStartCollectionMethod
public TestMethod(TestMethodCfg cfg)
: base(cfg)
{
testMethodCfg = cfg;
log.Debug(this.ToString());
}
public IList<Event> Execute(Entities.Test test)
{
return (new FlyingStartCollectionMethodSeq()).Execute(test);
return (new FlyingStartCollectionMethodSeq()).Execute(test, testMethodCfg.TestParams);
}
}
}