You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
A consequence of this very strange construct is that IntelliJ gets really confused and it no longer automatically sees the sources as sources but instead it sees one level deeper as being test sources.
Why not simply move the test classes to the place where all test classes live?
The text was updated successfully, but these errors were encountered:
These classes aren't tests, but test infrastructure classes (custom truth subjects, to be more specific, see https://github.com/google/truth), and have tests themselves. Because of this, they should really live in the main java source tree.
We can look into whether there's a way to exclude them from built binaries in ways which are less confusing to IntelliJ.
There are some test classes located under the main java source tree.
This is then 'fixed' in the build.gradle with this
A consequence of this very strange construct is that IntelliJ gets really confused and it no longer automatically sees the sources as sources but instead it sees one level deeper as being test sources.
Why not simply move the test classes to the place where all test classes live?
The text was updated successfully, but these errors were encountered: