SMILA/Documentation/HowTo/Create a test bundle (plug-in) - Eclipse Wiki
Depending on your project, you might need more than basic unit tests: test.eclipse
Testing in Eclipse is powered by JUnit , a framework that allows you to write repeatable tests for your Java code. test.eclipse
To get "test.eclipse" running, you need to configure your environment: test.eclipse
: For plug-in development, common practice is to create a separate bundle named after the host project with .test appended (e.g., com.example.app.test ). 3. Execution & Debugging
: A Green Bar indicates success; a Red Bar indicates a failure that needs attention.