1
0
mirror of https://gitlab.com/camelot/kickc.git synced 2024-08-02 09:29:35 +00:00

Put tests into suite to get deterministic sequencing.

This commit is contained in:
Jesper Gravgaard 2018-01-21 11:39:06 +01:00
parent 9328608fe6
commit 1d54fec7be

View 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 {
}