views:

45

answers:

1

Hello,

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

+1  A: 

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.

trashgod
thanks for the link it is useful but I do not found section explaining how to configure java project hw to run configuration ? what should we add from run->run config menu (from eclipse)?
my project will contain only junit tests ,which naming rules,configuration rules for each java project in eclipse)
The best guide is to search your version's `Help` system; I've added an example link above.
trashgod