< Day Day Up > |
Recipe 4.9 Running Your Code4.9.1 ProblemYou want to run your code. 4.9.2 SolutionSelect one of the following items in the Run menu:
4.9.3 DiscussionBefore running your code, save your files, or Eclipse will prompt you to do so. The general way to run your code is to select Run Run As, and then choose the way you want to run your code from the submenu: Java Applet, Java Application, JUnit Test, or Run-time Workbench (used to run plug-ins under development).
4.9.3.1 Eclipse 3.0Eclipse 3.0 adds another option to the Run Run As submenu: JUnit Plug-In Test. Eclipse 3.0 makes JUnit available for plug-in development. 4.9.4 See AlsoChapter 5 on JUnit testing; Chapter 2 of Eclipse (O'Reilly). |
< Day Day Up > |