Skip to content

Commit

Permalink
V.1.3
Browse files Browse the repository at this point in the history
  • Loading branch information
meilie389 committed Mar 12, 2020
1 parent 597f929 commit 69d8285
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>com.adriens.github.opt.tempsattente</groupId>
<artifactId>tempsattente-sdk</artifactId>
<version>1.2</version>
<version>1.3</version>
<packaging>jar</packaging>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -81,21 +81,21 @@ public void testGetCommune_empty() {
}

@Test
public void testGetCommune_good_upper_accents() {
public void testGetCommuneGoodUpperAccents() {
System.out.println("\ngetCommune_good_upper_accents_TEST");
String commune_name = "Nouméa";
assertNull(Agences.getCommune(commune_name),"Une correspondance a été trouvée.");
}

@Test
public void testGetCommune_good() {
public void testGetCommuneGood() {
System.out.println("\ngetCommune_good_TEST");
String commune_name = "noumea";
assertEquals(Agences.Commune.NOUMEA, Agences.getCommune(commune_name),"Une correspondance a été trouvée.");
}

@Test
public void testGetCommune_bad() {
public void testGetCommuneBad() {
System.out.println("\ngetCommune_bad_TEST");
String commune_name = "test";
assertNull(Agences.getCommune(commune_name),"Une correspondance a été trouvée.");
Expand Down

0 comments on commit 69d8285

Please sign in to comment.