From f2701f0f85f084437ff61363cfc38ed3af34f7a9 Mon Sep 17 00:00:00 2001 From: marhali Date: Wed, 1 Jun 2022 12:04:05 +0200 Subject: [PATCH] fix(tests): add missing method implementation --- src/test/java/de/marhali/easyi18n/KeyPathConverterTest.java | 5 +++++ .../de/marhali/easyi18n/mapper/PropertiesMapperTest.java | 5 +++++ 2 files changed, 10 insertions(+) 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