3 import com.mongodb.client.MongoDatabase;
5 // DO NOT MODIFY THIS CLASS.
8 * The IDocumentTestData interface works like the ITestData as introduced in ass1-jpa only for the {@link MongoService}.
10 public interface IDocumentTestData {
12 * Inserts the data into the given MongoDatabase instance.
14 * @param db the mongo database instance
15 * @throws Exception if the insertion failed for some reason
17 void insertTestData(MongoDatabase db) throws Exception;