tbf/TestBenchFramework/BenchControl/TestMethods/PMaxTest/TestMethodFactory.cs
Milan Hanajik b07c7c5c9d PMaxTest and LeakTest methods implemented, added to the project
Order of two new test wizard dialog exchanged
Pressure Selection wizard dialog added
2015-02-19 15:54:55 +01:00

19 lines
538 B
C#

using TBF.BenchControl.Generic;
namespace TBF.BenchControl.TestMethods.PMaxTest
{
public class TestMethodFactory : IComponentFactory
{
public string ClassName { get { return "PMax-Test"; } }
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);
}
}
}