Skip to content

Commit 4bcd942

Browse files
committed
[Java] Restrict JVM version range for test.
1 parent 0b1e282 commit 4bcd942

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

sbe-tool/src/test/java/uk/co/real_logic/sbe/generation/csharp/Issue567GroupSizeTest.java

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,8 @@
1919
import org.junit.jupiter.api.AfterEach;
2020
import org.junit.jupiter.api.BeforeEach;
2121
import org.junit.jupiter.api.Test;
22+
import org.junit.jupiter.api.condition.EnabledForJreRange;
23+
import org.junit.jupiter.api.condition.JRE;
2224
import uk.co.real_logic.sbe.Tests;
2325
import uk.co.real_logic.sbe.ir.Ir;
2426
import uk.co.real_logic.sbe.xml.IrGenerator;
@@ -32,6 +34,7 @@
3234
import static org.mockito.Mockito.verify;
3335
import static uk.co.real_logic.sbe.xml.XmlSchemaParser.parse;
3436

37+
@EnabledForJreRange(min = JRE.JAVA_8, max = JRE.JAVA_17)
3538
public class Issue567GroupSizeTest
3639
{
3740
public static final String ERR_MSG =

0 commit comments

Comments
 (0)