File tree Expand file tree Collapse file tree 5 files changed +15
-0
lines changed
fault-tolerance/fault-tolerance/src/test/java/io/helidon/faulttolerance
health/health-checks/src/test/java/io/helidon/health/checks
cache/src/test/java/io/helidon/integrations/microstream/cache
cdi/src/test/java/io/helidon/integrations/microstream/cdi
core/src/test/java/io/helidon/integrations/microstream/core Expand file tree Collapse file tree 5 files changed +15
-0
lines changed Original file line number Diff line number Diff line change 2929import io .helidon .testing .junit5 .Testing ;
3030
3131import org .junit .jupiter .api .Test ;
32+ import org .junit .jupiter .api .condition .DisabledOnJre ;
33+ import org .junit .jupiter .api .condition .JRE ;
3234
3335import static io .helidon .faulttolerance .Bulkhead .FT_BULKHEAD_CALLS_TOTAL ;
3436import static io .helidon .faulttolerance .Bulkhead .FT_BULKHEAD_EXECUTIONSREJECTED ;
4244import static org .junit .jupiter .api .Assertions .fail ;
4345
4446@ Testing .Test
47+ @ DisabledOnJre (JRE .OTHER )
4548class BulkheadMetricsTest extends BulkheadBaseTest {
4649
4750 @ Test
Original file line number Diff line number Diff line change 2323
2424import org .junit .jupiter .api .BeforeEach ;
2525import org .junit .jupiter .api .Test ;
26+ import org .junit .jupiter .api .condition .DisabledOnJre ;
27+ import org .junit .jupiter .api .condition .JRE ;
2628import org .junit .jupiter .params .ParameterizedTest ;
2729import org .junit .jupiter .params .provider .Arguments ;
2830import org .junit .jupiter .params .provider .MethodSource ;
3234import static org .hamcrest .MatcherAssert .assertThat ;
3335import static org .hamcrest .Matchers .hasEntry ;
3436
37+ @ DisabledOnJre (JRE .OTHER )
3538class MemoryHealthCheckTest {
3639 private static final long MAX_MEMORY = 10000L ;
3740 private static final long TOTAL_MEMORY_START = 5000L ;
Original file line number Diff line number Diff line change 2626import one .microstream .cache .types .Cache ;
2727import one .microstream .cache .types .CacheConfiguration ;
2828import org .junit .jupiter .api .Test ;
29+ import org .junit .jupiter .api .condition .DisabledOnJre ;
30+ import org .junit .jupiter .api .condition .JRE ;
2931import org .junit .jupiter .api .io .TempDir ;
3032
33+ @ DisabledOnJre (JRE .OTHER )
3134class CacheTest {
3235
3336 @ TempDir
Original file line number Diff line number Diff line change 2525import org .junit .jupiter .api .AfterAll ;
2626import org .junit .jupiter .api .BeforeAll ;
2727import org .junit .jupiter .api .Test ;
28+ import org .junit .jupiter .api .condition .DisabledOnJre ;
29+ import org .junit .jupiter .api .condition .JRE ;
2830import org .junit .jupiter .api .io .TempDir ;
2931
3032import static org .hamcrest .MatcherAssert .assertThat ;
3133import static org .hamcrest .Matchers .equalTo ;
3234import static org .hamcrest .Matchers .notNullValue ;
3335
3436@ HelidonTest
37+ @ DisabledOnJre (JRE .OTHER )
3538class MicrostreamExtensionTest {
3639
3740 @ TempDir
Original file line number Diff line number Diff line change 2626
2727import one .microstream .storage .embedded .types .EmbeddedStorageManager ;
2828import org .junit .jupiter .api .Test ;
29+ import org .junit .jupiter .api .condition .DisabledOnJre ;
30+ import org .junit .jupiter .api .condition .JRE ;
2931import org .junit .jupiter .api .io .TempDir ;
3032
3133import static org .hamcrest .CoreMatchers .is ;
3234import static org .hamcrest .MatcherAssert .assertThat ;
3335import static org .hamcrest .text .StringContainsInOrder .stringContainsInOrder ;
3436import static org .junit .jupiter .api .Assertions .assertNotNull ;
3537
38+ @ DisabledOnJre (JRE .OTHER )
3639class ConfigurationTest {
3740
3841 @ TempDir
You can’t perform that action at this time.
0 commit comments