31 lines
1015 B
C#
31 lines
1015 B
C#
///
|
|
/// Copyright (c) 2013-2016 Sensus Metering Systems
|
|
///
|
|
using System.Collections.Generic;
|
|
using TBF.BenchControl.Generic;
|
|
using TBF.BenchControl.Configs.NameOnly;
|
|
|
|
namespace TBF.BenchControl.TestMethods.Adjustment
|
|
{
|
|
public class Factory : IComponentFactory
|
|
{
|
|
public string ClassName { get { return this.GetType().Namespace.Substring(17) + ".Single"; } }
|
|
|
|
public void ResetStaticProperties() { TestMethod.ResetStaticProperties(); }
|
|
|
|
public IComponent DummyComponent() { return new TestMethod(); }
|
|
|
|
public IComponent GetComponent(IComponentCfg cfg, IList<IComponent> components) { return new TestMethod(cfg); }
|
|
|
|
public IComponentCfg DefaultConfig()
|
|
{
|
|
return new TestMethodCfg(this.GetType().Namespace.Substring("TBF.BenchControl.TestMethods.".Length) + ".Single", this);
|
|
}
|
|
|
|
public IComponentCfg CmpntCfgFromCmpntEntity(Config.Entities.Component component)
|
|
{
|
|
return ComponentCfgBase.CreateFromDbEntity(typeof(TestMethodCfg), component, this);
|
|
}
|
|
}
|
|
}
|