mirror of
https://gitlab.com/camelot/kickc.git
synced 2024-11-20 02:32:36 +00:00
Put tests into suite to get deterministic sequencing.
This commit is contained in:
parent
9328608fe6
commit
1d54fec7be
13
src/test/java/dk/camelot64/kickc/test/Tests.java
Normal file
13
src/test/java/dk/camelot64/kickc/test/Tests.java
Normal file
@ -0,0 +1,13 @@
|
||||
package dk.camelot64.kickc.test;
|
||||
|
||||
import org.junit.runner.RunWith;
|
||||
import org.junit.runners.Suite;
|
||||
|
||||
@RunWith(Suite.class)
|
||||
@Suite.SuiteClasses({
|
||||
TestFragments.class,
|
||||
TestPrograms.class
|
||||
})
|
||||
|
||||
public class Tests {
|
||||
}
|
Loading…
Reference in New Issue
Block a user