Add tests for NoteService

This commit is contained in:
P0nk
2022-12-27 12:18:58 +01:00
parent 65111ae209
commit 4731c0c60d
3 changed files with 175 additions and 0 deletions

View File

@@ -0,0 +1,14 @@
package testutil;
import database.DaoException;
public class AnyValues {
public static String string() {
return "string";
}
public static DaoException daoException() {
return new DaoException(string(), new RuntimeException());
}
}