Allow to decide whether test contacts should have alias

This commit is contained in:
Torsten Grote
2021-03-19 14:24:19 -03:00
parent 372516646d
commit 4ca286b28e
4 changed files with 11 additions and 9 deletions

View File

@@ -24,5 +24,6 @@ public interface TestDataCreator {
int numBlogPosts, int numForums, int numForumPosts);
@IoExecutor
Contact addContact(String name, boolean avatar) throws DbException;
Contact addContact(String name, boolean alias, boolean avatar)
throws DbException;
}