19 lines
329 B
Java
19 lines
329 B
Java
package testutil;
|
|
|
|
import database.DaoException;
|
|
|
|
public class AnyValues {
|
|
|
|
public static String string() {
|
|
return "string";
|
|
}
|
|
|
|
public static short anyShort() {
|
|
return 4;
|
|
}
|
|
|
|
public static DaoException daoException() {
|
|
return new DaoException(string(), new RuntimeException());
|
|
}
|
|
}
|