Add tests for MakerInfoProvider

These are going to be handy soon,
as I'm about to add Caffeine for caching.
This commit is contained in:
P0nk
2023-03-04 20:50:29 +01:00
parent 6073b20d65
commit f2ca67aba4
3 changed files with 132 additions and 0 deletions

View File

@@ -8,6 +8,10 @@ public class AnyValues {
return "string";
}
public static int integer() {
return 17;
}
public static DaoException daoException() {
return new DaoException(string(), new RuntimeException());
}