_ Prerequisite
(Mandatory)
(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
- Step.3
- Sample production code App.java and AppTest.java will be created.
You can execute testing by the following command.
$ mvn test
_ Import mvn project to eclipse
- Step.1
- Luanch eclipse.
- Step.2
- Select File -> Import.
- Step.3
- Select "Existing Maven Projects" and click "next" button.
- Step.4
- Click "Browse" button and select created maven project folder.
- Step.5
- Click "Finish" button. And you have imported eclipse project.
_ 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
- Step.2
- Select "File"->"New"->"JUnit Test Case" (lower one).
- Step.3
- Select "New JUnit 4 test" and click "Finish" button.
- 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.
- 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