import org.junit.Test;
import org.tr069todmt.Tr069todmt;
public class MyClassTest {
@Test
public void testMethod1() {
Tr069todmt tr069todmt = new Tr069todmt();
String param1 = "test";
tr069todmt.method1(param1);
// ...
}
@Test
public void testMethod2() {
Tr069todmt tr069todmt = new Tr069todmt();
int param1 = 10;
String param2 = "test";
tr069todmt.method2(param1, param2);
// ...
}
}