File tree Expand file tree Collapse file tree 4 files changed +20
-0
lines changed
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 4 files changed +20
-0
lines changed 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 (
38+ value = JRE .OTHER ,
39+ disabledReason = "https://github.com/helidon-io/helidon/issues/10152" )
3540class MemoryHealthCheckTest {
3641 private static final long MAX_MEMORY = 10000L ;
3742 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 (
34+ value = JRE .OTHER ,
35+ disabledReason = "https://github.com/helidon-io/helidon/issues/10152" )
3136class CacheTest {
3237
3338 @ 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 (
38+ value = JRE .OTHER ,
39+ disabledReason = "https://github.com/helidon-io/helidon/issues/10152" )
3540class MicrostreamExtensionTest {
3641
3742 @ 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 (
39+ value = JRE .OTHER ,
40+ disabledReason = "https://github.com/helidon-io/helidon/issues/10152" )
3641class ConfigurationTest {
3742
3843 @ TempDir
You can’t perform that action at this time.
0 commit comments