user281070
user281070

Reputation: 1351

Creating Java test rules

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

Answers (1)

trashgod
trashgod

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

Related Questions