Is your feature request related to a problem? Please describe.
To make a scala source file a part of the test scope, one can either put it into test directory or use .scala.test file name extension. However, for java sources the second technique (using .test.java) doesn't work, which might be surprising to users.
Describe the solution you'd like
Files with .test.java extension should be considered a part of the test scope sources
Describe alternatives you've considered
Placing .java files in test directory actually works as a workaround
Is your feature request related to a problem? Please describe.
To make a scala source file a part of the test scope, one can either put it into
testdirectory or use.scala.testfile name extension. However, for java sources the second technique (using.test.java) doesn't work, which might be surprising to users.Describe the solution you'd like
Files with
.test.javaextension should be considered a part of the test scope sourcesDescribe alternatives you've considered
Placing
.javafiles intestdirectory actually works as a workaround