01: package test.morten;
02:
03: import org.testng.annotations.Factory;
04:
05: public class SampleTestFactory {
06: public SampleTestFactory() {
07: } // CTR necessary ?
08:
09: @Factory
10: public Object[] createInstances() {
11: return new SampleTest[] { new SampleTest(1, 0.1f),
12: new SampleTest(10, 0.5f), };
13: }
14: };
|