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
I would simply use Path from Java 7
Path resourceDirectory = Paths.get("src","test","resources");
Neat and clean!