I know I can load a file from src/test/resources with:
getClass().getResource(\"somefile\").getFile()
But how can I get the full path to th
Use .getAbsolutePath() on your File object.
getClass().getResource("somefile").getFile().getAbsolutePath()