2015-04-15 18:32:56 +00:00
|
|
|
|
///
|
2016-08-05 12:32:36 +00:00
|
|
|
|
/// Copyright (c) 2013-2016 Sensus Metering Systems
|
2015-04-15 18:32:56 +00:00
|
|
|
|
///
|
|
|
|
|
|
using System;
|
2015-01-02 18:14:19 +00:00
|
|
|
|
using System.Collections.Generic;
|
2014-09-06 15:34:26 +00:00
|
|
|
|
using System.IO;
|
|
|
|
|
|
using System.Xml.Serialization;
|
|
|
|
|
|
using TBF.BenchControl.Generic;
|
|
|
|
|
|
|
|
|
|
|
|
namespace TBF.BenchControl.TestMethods.FlyingStart
|
|
|
|
|
|
{
|
|
|
|
|
|
public class TestMethodCfg : ComponentCfgBase, Generic.IComponentCfg
|
|
|
|
|
|
{
|
2015-01-02 18:14:19 +00:00
|
|
|
|
public IComponentCfgCtrl GetControl() { return new TestMethodCfgCtrl(); }
|
|
|
|
|
|
|
2014-12-31 12:46:33 +00:00
|
|
|
|
/// Private parameterless constructor invoked by all other (public) constructors
|
|
|
|
|
|
TestMethodCfg()
|
2014-09-06 15:34:26 +00:00
|
|
|
|
{
|
2014-12-29 15:00:27 +00:00
|
|
|
|
Name = "FlyingStart";
|
|
|
|
|
|
ParentName = string.Empty;
|
|
|
|
|
|
}
|
2014-09-06 15:34:26 +00:00
|
|
|
|
|
2014-12-29 15:00:27 +00:00
|
|
|
|
public TestMethodCfg(IComponentFactory factory)
|
|
|
|
|
|
: this()
|
2014-09-06 15:34:26 +00:00
|
|
|
|
{
|
2014-12-29 15:00:27 +00:00
|
|
|
|
this.Factory = factory;
|
|
|
|
|
|
}
|
2014-09-06 15:34:26 +00:00
|
|
|
|
|
|
|
|
|
|
public string ToString(int i)
|
|
|
|
|
|
{
|
2014-12-29 15:00:27 +00:00
|
|
|
|
return string.Format("Name={0}", Name);
|
2014-09-06 15:34:26 +00:00
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|