From 5e4da449ad1fe1e0c08ab3e35bd93e8c9a2cc785 Mon Sep 17 00:00:00 2001 From: Milan Hanajik Date: Sat, 10 Dec 2016 07:12:23 +0100 Subject: [PATCH] Endurance TestParams disabled. --- .../BenchControl/TestMethods/Endurance/TestMethodCfg.cs | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/TestBenchFramework/BenchControl/TestMethods/Endurance/TestMethodCfg.cs b/TestBenchFramework/BenchControl/TestMethods/Endurance/TestMethodCfg.cs index e6f458a10..0209889df 100644 --- a/TestBenchFramework/BenchControl/TestMethods/Endurance/TestMethodCfg.cs +++ b/TestBenchFramework/BenchControl/TestMethods/Endurance/TestMethodCfg.cs @@ -16,6 +16,7 @@ namespace TBF.BenchControl.TestMethods.Endurance public string Cycle; +#if false /// Test parameters [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)