tbf/TestBenchFramework/BenchControl/TestMethods/FixedStartMassCollection/TestMethodFactory.cs

19 lines
563 B
C#

using TBF.BenchControl.Generic;
namespace TBF.BenchControl.TestMethods.FixedStartMassCollection
{
public class TestMethodFactory : IComponentFactory
{
public string ClassName { get { return "FixedStartMassCollection"; } }
public void ResetStaticProperties() { TestMethod.ResetStaticProperties(); }
public IComponentCfg DefaultConfig() { return new TestMethodCfg(this); }
public IComponentCfg CmpntCfgFromCmpntEntity(Entities.Component component)
{
return ComponentCfgBase.CreateFromDbEntity(typeof(TestMethodCfg), component, this);
}
}
}