File tree Expand file tree Collapse file tree 2 files changed +9
-2
lines changed
src/test/java/dev/openfeature/sdk Expand file tree Collapse file tree 2 files changed +9
-2
lines changed Original file line number Diff line number Diff line change 4444 - name : Verify with Maven
4545 run : mvn --batch-mode --update-snapshots --activate-profiles e2e,${{ matrix.build.profile }} verify
4646
47- # - name: Verify with vmlens
48- # run: mvn vmlens-maven-plugin:test
47+ - name : Verify with vmlens
48+ run : mvn vmlens-maven-plugin:test -e -X --activate-profiles vmlens
4949
5050 - if : matrix.build.java == '17'
5151 name : Upload coverage to Codecov
Original file line number Diff line number Diff line change 99import org .junit .jupiter .api .AfterEach ;
1010import org .junit .jupiter .api .BeforeEach ;
1111import org .junit .jupiter .api .Test ;
12+ import org .junit .jupiter .api .condition .EnabledIfSystemProperty ;
1213
1314import static org .junit .jupiter .api .Assertions .assertEquals ;
1415import static org .junit .jupiter .api .Assertions .assertTrue ;
1516
1617/**
1718 * Javadoc.
1819 */
20+ @ EnabledIfSystemProperty (named = "--activate-profiles" , matches = "vmlens" )
1921class VmLensTest {
2022 final OpenFeatureAPI api = new OpenFeatureAPI ();
2123
@@ -33,6 +35,11 @@ void tearDown() {
3335 api .shutdown ();
3436 }
3537
38+ @ Test
39+ void fail (){
40+ assertTrue (false );
41+ }
42+
3643 @ Test
3744 void concurrentFlagEvaluations () {
3845 var client = api .getClient ();
You can’t perform that action at this time.
0 commit comments