Skip to content
Snippets Groups Projects
Verified Commit 69c34ada authored by Julian Dehm's avatar Julian Dehm
Browse files

Remove createTestData()

parent fe213d46
No related branches found
No related tags found
No related merge requests found
Pipeline #
......@@ -5,11 +5,8 @@ import org.briarproject.bramble.api.nullsafety.NotNullByDefault;
@NotNullByDefault
public interface TestDataCreator {
/* Creates fake test data on the DatabaseExecutor */
void createTestData();
/**
* Creates a configurable amount of fake test data on the DatabaseExecutor
* Create fake test data on the DatabaseExecutor
*
* @param numContacts Number of contacts to create.
* @param numPrivateMsgs Number of private messages to create for each
......
......@@ -126,10 +126,6 @@ public class TestDataCreatorImpl implements TestDataCreator {
});
}
public void createTestData() {
createTestData(20, 15, 30, 3, 30);
}
@IoExecutor
private void createTestDataOnDbExecutor(int numContacts, int numPrivateMsgs,
int numBlogPosts, int numForums, int numForumPosts)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment