Why public static method from class of src.test.java packet is not importing to classes of src.main.java ?
When I print MainTest
in classes of src.main.java packet, the IDE can't recognize it
Why public static method from class of src.test.java packet is not importing to classes of src.main.java ?
When I print MainTest
in classes of src.main.java packet, the IDE can't recognize it
Classes and methods in src/test/java
are intended for testing only. You should never attempt to use these in any code that is in src/main/java
which should only contain code that is part of the app.