-
-
Notifications
You must be signed in to change notification settings - Fork 1.6k
Description
description
In JUnit 6, these conditions are always satisfied.
If the programming language you are using supports text blocks — for example, Java SE 15 or higher —
If your programming language level you are using supports records — for example, Java 16 or higher
junit-framework/junit-jupiter-params/src/main/java/org/junit/jupiter/params/provider/CsvSource.java
Lines 136 to 138 in c81499c
* <p>Text block syntax is supported by various languages on the JVM | |
* including Java SE 15 or higher. If text blocks are not supported, you | |
* should declare your CSV content via the {@link #value} attribute. |
Deliverables
- Remove the annotation for Java 15 - text blocks,
- Remove the annotation for Java 16 - record
marcphilipp