rename package

This commit is contained in:
DerTyp7
2023-09-01 10:09:31 +02:00
parent 19a5b42f38
commit 57e556e100
2 changed files with 4 additions and 3 deletions

View File

@@ -1,4 +1,4 @@
package com.tf.romanCharConverter;
package de.tf.romanCharConverter;
import java.util.HashMap;
@@ -29,6 +29,7 @@ public class RomanCharConverter {
}
}
result += this.romanToArabic.get(romanChar);
}

View File

@@ -1,4 +1,4 @@
package com.tf.romanCharConverter;
package de.tf.romanCharConverter;
import org.junit.jupiter.api.BeforeEach;
import org.junit.jupiter.api.Test;
@@ -39,7 +39,7 @@ public class RomanCharConverterTest {
}
@Test
public void givenMultipleRomanSubstractChar_whenConvert_thenArabic(){
public void givenMultipleRomanSubtractChar_whenConvert_thenArabic(){
assertEquals(4, converter.convert("IV"));
assertEquals(9, converter.convert("IX"));
assertEquals(40, converter.convert("XL"));