File tree Expand file tree Collapse file tree
src/test/java/org/apache/commons/cli Expand file tree Collapse file tree Original file line number Diff line number Diff line change 6161 <artifactId >junit-jupiter-params</artifactId >
6262 <scope >test</scope >
6363 </dependency >
64+ <dependency >
65+ <groupId >org.junit-pioneer</groupId >
66+ <artifactId >junit-pioneer</artifactId >
67+ </dependency >
6468 <dependency >
6569 <groupId >commons-io</groupId >
6670 <artifactId >commons-io</artifactId >
Original file line number Diff line number Diff line change @@ -46,6 +46,7 @@ Licensed to the Apache Software Foundation (ASF) under one or more
4646import org .junit .jupiter .params .ParameterizedTest ;
4747import org .junit .jupiter .params .provider .Arguments ;
4848import org .junit .jupiter .params .provider .MethodSource ;
49+ import org .junitpioneer .jupiter .DefaultLocale ;
4950
5051class TypeHandlerTest {
5152
@@ -176,6 +177,7 @@ void testCreateClass() throws ParseException {
176177
177178 @ ParameterizedTest
178179 @ MethodSource ("createDateFixtures" )
180+ @ DefaultLocale (language = "en" , country = "US" )
179181 void testCreateDate (final Date date ) {
180182 assertEquals (date , TypeHandler .createDate (date .toString ()));
181183 }
You can’t perform that action at this time.
0 commit comments