diff --git a/src/test/java/de/marhali/easyi18n/KeyPathConverterTest.java b/src/test/java/de/marhali/easyi18n/KeyPathConverterTest.java index d61ea47..514e41c 100644 --- a/src/test/java/de/marhali/easyi18n/KeyPathConverterTest.java +++ b/src/test/java/de/marhali/easyi18n/KeyPathConverterTest.java @@ -162,6 +162,11 @@ public class KeyPathConverterTest { public boolean isAlwaysFold() { return false; } + + @Override + public boolean isIncludeSubDirs() { + return false; + } }); } } diff --git a/src/test/java/de/marhali/easyi18n/mapper/PropertiesMapperTest.java b/src/test/java/de/marhali/easyi18n/mapper/PropertiesMapperTest.java index 5667613..e7bba6a 100644 --- a/src/test/java/de/marhali/easyi18n/mapper/PropertiesMapperTest.java +++ b/src/test/java/de/marhali/easyi18n/mapper/PropertiesMapperTest.java @@ -235,6 +235,11 @@ public class PropertiesMapperTest extends AbstractMapperTest { public boolean isAlwaysFold() { return false; } + + @Override + public boolean isIncludeSubDirs() { + return false; + } }); } } \ No newline at end of file