The extension uses raw data from "src/main/resources" instead of "build/resources/main". Because of this, raw resource data is used during testing.
Configuring the extension solves the problem:
"java.test.config": {
"workingDirectory": "${workspaceFolder}",
"classpath": "${workspaceFolder}/build/classes/java/test:${workspaceFolder}/build/resources/main:${workspaceFolder}/build/resources/test"
}
I think this is a bug, as using raw data from resources leads to incorrect test results.
The extension uses raw data from "src/main/resources" instead of "build/resources/main". Because of this, raw resource data is used during testing.
Configuring the extension solves the problem:
I think this is a bug, as using raw data from resources leads to incorrect test results.