Skip to content

Commit 55d520f

Browse files
committed
2 parents afe81d3 + 84d64e6 commit 55d520f

9 files changed

Lines changed: 20 additions & 16 deletions

File tree

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ Capturing Human Intelligence - ApprovalTests is an open source assertion/verific
3030

3131
It is compatible with JUnit 3, 4 & 5 and TestNG.
3232

33-
Works on JDK 1.8+ (tested on 1.8, 17, 21, 24, 25).<!-- singleLineInclude: JavaVersionTest.testSupportedJavaVersions.approved.txt -->
33+
Works on JDK 1.8+ (tested on 1.8, 17, 21, 24, 25, 26).<!-- singleLineInclude: JavaVersionTest.testSupportedJavaVersions.approved.txt -->
3434

3535
## What can it be used for?
3636

approvaltests-tests/pom.xml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@
6868
<dependency>
6969
<groupId>org.junit.jupiter</groupId>
7070
<artifactId>junit-jupiter</artifactId>
71-
<version>6.0.3</version>
71+
<version>6.1.0</version>
7272
</dependency>
7373
<dependency>
7474
<groupId>com.fasterxml.jackson.dataformat</groupId>
@@ -103,7 +103,7 @@
103103
<dependency>
104104
<groupId>xom</groupId>
105105
<artifactId>xom</artifactId>
106-
<version>1.4.2</version>
106+
<version>1.4.4</version>
107107
</dependency>
108108

109109
<dependency>
@@ -121,7 +121,7 @@
121121
<dependency>
122122
<groupId>net.jqwik</groupId>
123123
<artifactId>jqwik</artifactId>
124-
<version>1.9.3</version>
124+
<version>1.10.0</version>
125125
</dependency>
126126

127127
<dependency>
@@ -242,7 +242,7 @@
242242
</plugin>
243243
<plugin>
244244
<artifactId>maven-surefire-plugin</artifactId>
245-
<version>3.5.5</version>
245+
<version>3.5.6</version>
246246
</plugin>
247247
</plugins>
248248
</build>

approvaltests-util-tests/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
<dependency>
1616
<groupId>org.junit.jupiter</groupId>
1717
<artifactId>junit-jupiter</artifactId>
18-
<version>6.0.3</version>
18+
<version>6.1.0</version>
1919
<scope>test</scope>
2020
</dependency>
2121
<dependency>
@@ -82,7 +82,7 @@
8282
</plugin>
8383
<plugin>
8484
<artifactId>maven-surefire-plugin</artifactId>
85-
<version>3.5.5</version>
85+
<version>3.5.6</version>
8686
</plugin>
8787
</plugins>
8888
</build>

approvaltests-util-tests/src/test/java/com/spun/util/DateDifferenceTest.java

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@
1212
import java.text.MessageFormat;
1313
import java.util.Calendar;
1414
import java.util.GregorianCalendar;
15+
import java.util.TimeZone;
1516

1617
import static org.junit.jupiter.api.Assertions.assertEquals;
1718

@@ -145,6 +146,7 @@ public void testFebruaryAndDaylightSavingsTime()
145146
try (WithTimeZone tz = new WithTimeZone("PST"))
146147
{
147148
StringBuilder buffer = new StringBuilder();
149+
buffer.append("TimeZone.getDefault(): " + TimeZone.getDefault() + "\n\n");
148150
DateFormat f = TemplateDate.FORMATS.DATE_SHORT;
149151
for (int i = 1; i <= 28; i++)
150152
{

approvaltests-util-tests/src/test/java/com/spun/util/DateDifferenceTest.testFebruaryAndDaylightSavingsTime.approved.txt

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
TimeZone.getDefault(): sun.util.calendar.ZoneInfo[id="PST",offset=-28800000,dstSavings=3600000,useDaylight=true,transitions=311,lastRule=java.util.SimpleTimeZone[id=PST,offset=-28800000,dstSavings=3600000,useDaylight=true,startYear=0,startMode=3,startMonth=2,startDay=8,startDayOfWeek=1,startTime=7200000,startTimeMode=0,endMode=3,endMonth=10,endDay=1,endDayOfWeek=1,endTime=7200000,endTimeMode=0]]
2+
13
02/01/2010, 03/01/2010 => 28 Days, 0 Hours
24
02/02/2010, 03/02/2010 => 28 Days, 0 Hours
35
02/03/2010, 03/03/2010 => 28 Days, 0 Hours

approvaltests-util/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@
8282
<dependency>
8383
<groupId>org.junit.jupiter</groupId>
8484
<artifactId>junit-jupiter</artifactId>
85-
<version>6.0.3</version>
85+
<version>6.1.0</version>
8686
<scope>test</scope>
8787
</dependency>
8888
<dependency>

approvaltests/pom.xml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -123,33 +123,33 @@
123123
<dependency>
124124
<groupId>org.junit.jupiter</groupId>
125125
<artifactId>junit-jupiter-api</artifactId>
126-
<version>6.0.3</version>
126+
<version>6.1.0</version>
127127
<scope>compile</scope>
128128
<optional>true</optional>
129129
</dependency>
130130
<dependency>
131131
<groupId>xom</groupId>
132132
<artifactId>xom</artifactId>
133-
<version>1.4.2</version>
133+
<version>1.4.4</version>
134134
<scope>compile</scope>
135135
<optional>true</optional>
136136
</dependency>
137137
<dependency>
138138
<groupId>org.junit.jupiter</groupId>
139139
<artifactId>junit-jupiter</artifactId>
140-
<version>6.0.3</version>
140+
<version>6.1.0</version>
141141
<scope>test</scope>
142142
</dependency>
143143
<dependency>
144144
<groupId>org.junit.jupiter</groupId>
145145
<artifactId>junit-jupiter-engine</artifactId>
146-
<version>6.0.3</version>
146+
<version>6.1.0</version>
147147
<scope>test</scope>
148148
</dependency>
149149
<dependency>
150150
<groupId>org.junit.vintage</groupId>
151151
<artifactId>junit-vintage-engine</artifactId>
152-
<version>6.0.3</version>
152+
<version>6.1.0</version>
153153
<scope>test</scope>
154154
</dependency>
155155
<dependency>

counter_display/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
<dependency>
2222
<groupId>org.junit.jupiter</groupId>
2323
<artifactId>junit-jupiter</artifactId>
24-
<version>6.0.3</version>
24+
<version>6.1.0</version>
2525
<scope>test</scope>
2626
</dependency>
2727
</dependencies>

pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,7 @@
118118
<!-- formatter_plugin_end -->
119119
<plugin>
120120
<artifactId>maven-surefire-plugin</artifactId>
121-
<version>3.5.5</version>
121+
<version>3.5.6</version>
122122
<configuration>
123123
<argLine>-Duser.language=en -Duser.region=US</argLine>
124124
<parallel>methods</parallel>
@@ -207,7 +207,7 @@
207207
<plugin>
208208
<groupId>org.apache.maven.plugins</groupId>
209209
<artifactId>maven-surefire-plugin</artifactId>
210-
<version>3.5.5</version>
210+
<version>3.5.6</version>
211211
</plugin>
212212
<plugin>
213213
<groupId>org.apache.maven.plugins</groupId>

0 commit comments

Comments
 (0)