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
List lines = Files.readAllLines(Paths.get("src/test/resources/foo.txt")); lines.forEach(System.out::println);