Merge branch 'eugenp:master' into string_to_int_encapsulation

This commit is contained in:
ciphx
2023-05-21 23:37:26 +05:30
committed by GitHub
2519 changed files with 34294 additions and 8520 deletions

View File

@@ -4,7 +4,6 @@
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<artifactId>core-java-string-conversions</artifactId>
<version>0.1.0-SNAPSHOT</version>
<name>core-java-string-conversions</name>
<packaging>jar</packaging>
@@ -44,6 +43,7 @@
<properties>
<icu4j.version>61.1</icu4j.version>
<argLine>-Djava.locale.providers=COMPAT</argLine>
</properties>
</project>

View File

@@ -1,7 +1,6 @@
package com.baeldung.datetostring;
import org.junit.BeforeClass;
import org.junit.Test;
import static org.junit.Assert.assertEquals;
import java.text.DateFormat;
import java.text.SimpleDateFormat;
@@ -14,7 +13,8 @@ import java.util.Date;
import java.util.Locale;
import java.util.TimeZone;
import static org.junit.Assert.assertEquals;
import org.junit.BeforeClass;
import org.junit.Test;
public class DateToStringFormatterUnitTest {