seed method

Future seed()

Override this method to insert static data for each test run.

This method gets invoked after resetData is called to re-provisioning static data in your application's database.

For example, an application might have a table that contains country codes for every country in the world; this data would be cleared between each test case when resetData is called. By implementing this method, that data is recreated after the database is reset.

Implementation

Future seed() async {}