Skip to content

Commit 54deb2a

Browse files
author
jantje
committed
Add test to run all junit tests
There are plugin unit tests suites but there was not jet a realJUnit test suite
1 parent 4fe1a54 commit 54deb2a

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
package io.sloeber.junit;
2+
3+
import org.junit.runner.RunWith;
4+
import org.junit.runners.Suite;
5+
import org.junit.runners.Suite.SuiteClasses;
6+
7+
@RunWith(Suite.class)
8+
@SuiteClasses({ TestPlatformWorkAround.class, TestSerialPlotterFilter.class, TestTxtFile.class, TestWorkAround.class,
9+
TxtWorkAroundRegression.class, TestVersionCompare.class })
10+
public class AllJUnitTests {
11+
12+
}

0 commit comments

Comments
 (0)