I've got an android application with a module performing data processing (HTML scraping in fact). This part is pure java and all its tests are in the src/test
path.
My particular problem is that I have a set of (large-ish) files to be parsed by the tests and I need a reliable way to access these files. I know that best practice would be to keep the files inline, but dumping 300k-ish content in strings is not ideal.
I've been reading various sources and I'd like to know if there is an alternative to the gradle trick.