1 package org.testng.junit; 2 3 import junit.framework.Test; 4 5 /** 6 * 7 * @author lukas 8 */ 9 public class JUnit3TestClass extends JUnitTestClass { 10 JUnit3TestClass(Test test)11 public JUnit3TestClass(Test test) { 12 super(test.getClass()); 13 } 14 } 15