mirror of https://github.com/aamine/cbc
16 lines
322 B
Java
16 lines
322 B
Java
import org.junit.*;
|
|
import org.junit.runner.*;
|
|
import org.junit.runners.*;
|
|
import org.junit.runners.Suite.*;
|
|
|
|
@RunWith(Suite.class)
|
|
@SuiteClasses({
|
|
TestCursor.class,
|
|
TestTextUtils.class
|
|
})
|
|
public class TestAll {
|
|
static public void main(String[] args) {
|
|
JUnitCore.main(TestAll.class.getName());
|
|
}
|
|
}
|