Reputation: 1351
I will start to create a Java project from eclipse which will contain all Java tests to control GUI.
When I create project I have :
TestProject\
.\src
.\Jre system library
Are there configuration rules?
Could I put all Java files in the same package under src
and run configuration for each Java test?
Are there rules, documentation to help user to configure and create Java projects?
Thanks
Upvotes: 0
Views: 164
Reputation: 205805
If you are using JUnit
, you may find some guidance in the FAQ Organizing Tests.
Addendum: Using your Eclipse Help > Help Contents
menu, search for "JUnit" to see details of how to set up test. As an example, here's a link to an older version.
Upvotes: 1