Skip to content

Commit

Permalink
Added the core tests to the test suite
Browse files Browse the repository at this point in the history
  • Loading branch information
thomasm-ttd committed Mar 1, 2024
1 parent 8c661fb commit 5169f3e
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
4 changes: 3 additions & 1 deletion src/test/java/suite/E2EPrivateOperatorTestSuite.java
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,14 @@
import org.junit.platform.suite.api.SelectClasses;
import org.junit.platform.suite.api.Suite;
import suite.basic.BasicTest;
import suite.core.CoreTest;
import suite.operator.V2ApiOperatorTest;

@Suite
@SelectClasses({
BasicTest.class,
V2ApiOperatorTest.class
V2ApiOperatorTest.class,
CoreTest.class
})
public class E2EPrivateOperatorTestSuite {
}
4 changes: 3 additions & 1 deletion src/test/java/suite/E2EPublicOperatorTestSuite.java
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
import org.junit.platform.suite.api.SelectClasses;
import org.junit.platform.suite.api.Suite;
import suite.basic.BasicTest;
import suite.core.CoreTest;
import suite.operator.*;
import suite.optout.BeforeOptoutTest;
import suite.validator.V0ApiValidatorTest;
Expand All @@ -15,7 +16,8 @@
V1ApiOperatorTest.class,
V2ApiOperatorTest.class,
V2ApiOperatorPublicOnlyTest.class,
BeforeOptoutTest.class
BeforeOptoutTest.class,
CoreTest.class
})
public class E2EPublicOperatorTestSuite {
}

0 comments on commit 5169f3e

Please sign in to comment.