Skip to content

Commit 0c03943

Browse files
[issue-1079] fix(tests): add runner to AcceptanceTestSuite for test count parity
The AcceptanceTestSuite was annotated with @RunWith(AllTests.class) to ensure consistent test execution counts after migrating to JUnit 4. A static audit found five lingering JUnit 3 style classes compatible with JUnit 4 runners with no further changes required. A CI-friendly command to compare test execution totals before and after the change was prepared for verification.
1 parent df86e7a commit 0c03943

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

quickfixj-core/src/test/java/quickfix/test/acceptance/AcceptanceTestSuite.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@
2828
import java.util.concurrent.ExecutorService;
2929
import java.util.concurrent.Executors;
3030

31+
@RunWith(AllTests.class)
3132
public class AcceptanceTestSuite extends TestSuite {
3233
private static final String ATEST_TIMEOUT_KEY = "atest.timeout";
3334
private static final String ATEST_TRANSPORT_KEY = "atest.transport";

0 commit comments

Comments
 (0)