Skip to main content

Notice: this Wiki will be going read only early in 2024 and edits will no longer be possible. Please see: https://gitlab.eclipse.org/eclipsefdn/helpdesk/-/wikis/Wiki-shutdown-plan for the plan.

Jump to: navigation, search

Difference between revisions of "EDT:Running Tests"

(Running JUnit Tests)
(Running EUnit Tests)
Line 2: Line 2:
 
This project holds JUnit tests that are designed to test the part binding, validation and IR serialization phase (no generation is performed). To run these tests, you need to load the project (org.eclipse.edt.tests.validation). Then, right click on the application in the Project Explorer Or Navigator and select "Run as -> JUnit test". All tests should run with no errors or failures.
 
This project holds JUnit tests that are designed to test the part binding, validation and IR serialization phase (no generation is performed). To run these tests, you need to load the project (org.eclipse.edt.tests.validation). Then, right click on the application in the Project Explorer Or Navigator and select "Run as -> JUnit test". All tests should run with no errors or failures.
  
== Running EUnit Tests ==
+
== org.eclipse.edt.eunit.test ==
 +
This contains a large number of tests that use the EUnit framework (see http://wiki.eclipse.org/EDT:EUnit_Testing) to test our core language features. To run this test, load the project (org.eclipse.edt.eunit.test). You will then need to

Revision as of 12:04, 9 January 2013

org.eclipse.edt.tests.validation

This project holds JUnit tests that are designed to test the part binding, validation and IR serialization phase (no generation is performed). To run these tests, you need to load the project (org.eclipse.edt.tests.validation). Then, right click on the application in the Project Explorer Or Navigator and select "Run as -> JUnit test". All tests should run with no errors or failures.

org.eclipse.edt.eunit.test

This contains a large number of tests that use the EUnit framework (see http://wiki.eclipse.org/EDT:EUnit_Testing) to test our core language features. To run this test, load the project (org.eclipse.edt.eunit.test). You will then need to

Back to the top