Skip to content

Commit 4541a30

Browse files
committed
#470: add test subclass to validate cached tag translator
1 parent c7e6507 commit 4541a30

File tree

1 file changed

+13
-0
lines changed

1 file changed

+13
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
package org.heigit.ohsome.oshdb.util.tagtranslator;
2+
3+
/**
4+
* Tests the {@link CachedTagTranslator} class.
5+
*/
6+
class CachedTagTranslatorTest extends AbstractTagTranslatorTest {
7+
8+
@Override
9+
TagTranslator getTranslator() {
10+
return new CachedTagTranslator(new JdbcTagTranslator(source), 1000, 1000);
11+
}
12+
13+
}

0 commit comments

Comments
 (0)