6 lines
172 B
Java
6 lines
172 B
Java
|
|
public class RunTests{
|
||
|
|
public static main(String[] args){
|
||
|
|
org.junit.runner.JUnitCore.runClasses(PalindromeTest.class/*, other classes here if you have more*/);
|
||
|
|
}
|
||
|
|
}
|