- all components, componentCfg-s and parameter providers use base classes - less boilerplate code, simpler access to test/procedure parameters from code - CreateTestParams(test), CreateProcedureParams(procedure) methods added - TestBenchSim class is made static, it is not inheritted by any device anymore
37 lines
989 B
C#
37 lines
989 B
C#
using System.Collections.Generic;
|
|
using TBF.BenchControl.Generic;
|
|
|
|
namespace TBF.BenchControl.ResultsWriters.Basic
|
|
{
|
|
public class WriterFactory : IComponentFactory
|
|
{
|
|
public string ClassName { get { return "BasicResultsWriter"; } }
|
|
|
|
/// <summary>Max. number of components of this class in the system</summary>
|
|
public int MaxCount { get { return 1; } }
|
|
|
|
|
|
public IComponentCfg DefaultConfig(IList<Entities.Component> components)
|
|
{
|
|
return new WriterCfg(this);
|
|
}
|
|
|
|
public IComponentCfgCtrl CreateCfgCtrl()
|
|
{
|
|
return new WriterCfgCtrl();
|
|
}
|
|
|
|
public IComponent ComponentFromCmpntCfg(IComponentCfg config, IList<Generic.IComponent> components)
|
|
{
|
|
return new Writer((WriterCfg)config);
|
|
}
|
|
|
|
public IComponentCfg CmpntCfgFromCmpntEntity(Entities.Component component)
|
|
{
|
|
return ComponentCfgBase.CreateFromDbEntity(typeof(WriterCfg), component, this);
|
|
}
|
|
|
|
public void ResetStaticProperties() { Writer.ResetStaticProperties(); }
|
|
}
|
|
}
|