Hello World from OSS Silicon Valley


HowToUse/JUnit/4.8


_ Prerequisite

(Mandatory)

  • Java SDK installation

(Optional) The explanation in this page assumes the following.

_ Install&Setup

Step.1
xxx

_ HowToUse

_ Create project.

Step.1
Launch Cygwin.
Step.2
Create the most simple maven project.
$ mvn archetype:create \
 -DgroupId=org.test \
 -DartifactId=project
CreateMavenProject_fig1.png
Step.3
Sample production code App.java and AppTest.java will be created. You can execute testing by the following command.
$ mvn test
CreateMavenProject_fig2.png

_ Import mvn project to eclipse

Step.1
Luanch eclipse.
Step.2
Select File -> Import.
ImportMavenProject_fig1.png
Step.3
Select "Existing Maven Projects" and click "next" button.
ImportMavenProject_fig2.png
Step.4
Click "Browse" button and select created maven project folder.
ImportMavenProject_fig3.png
ImportMavenProject_fig4.png
Step.5
Click "Finish" button. And you have imported eclipse project.
ImportMavenProject_fig5.png

_ Prepare source code.

Step.1
Create production code.

https://github.com/osssv/osssv-helloworld/blob/master/junit/4.8/project/src/main/java/org/test/Calc.java

CreateCode_fig1.png
Step.2
Select "File"->"New"->"JUnit Test Case" (lower one).
CreateCode_fig2.png
Step.3
Select "New JUnit 4 test" and click "Finish" button.
CreateCode_fig3.png
Step.4
When the JUnit 4 is not on the build path, eclipse ask if we setup it or not. Here, we choose "Not now" and click "OK" button.
CreateCode_fig4.png
Step.5
Open POM.xml and edit it as following.
Step.6
Execute the following command. Maven download JUnit4 and setup it to the build-path based on the description in POM.xml.
$ cd <Maven project directory>
$ mvn test
Step.5
Create test code.
Step.6
Execute test.

_ Author

S.Yatsuzuka