Endurance TestParams disabled.

This commit is contained in:
Milan Hanajik 2016-12-10 07:12:23 +01:00
parent c8d0c647b7
commit 5e4da449ad

View File

@ -16,6 +16,7 @@ namespace TBF.BenchControl.TestMethods.Endurance
public string Cycle;
#if false
/// <summary> Test parameters </summary>
[XmlIgnore]
public TestParams TestParams;
@ -26,11 +27,14 @@ namespace TBF.BenchControl.TestMethods.Endurance
testParams.UpdateTestParams(Name, test);
return testParams;
}
#endif
/// Private parameterless constructor invoked by all other (public) constructors
TestMethodCfg()
{
#if false
TestParams = new TestParams();
#endif
}
public TestMethodCfg(string name, IComponentFactory factory)