Is there any best practice for where to store mock files in Flutter?
Particularly, the auto-generated mock files, since I'm using @generateMocks
annotation from Mockito package.
Should I, for example, create a package dedicated for storing all project's mocks? or keep each mock in the test package that depend on it? or are there other approaches? pro and cons?
I found some related questions for other frameworks, and although it seems like a language-agnostic issue, I'm interested in knowing whether there are any recommendations for Flutter specifically.