vivitc / simple_tdd_exercise

simple tdd exercise with JUnit

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

simple_tdd_exercise

simple tdd exercise with JUnit Steps

vi ~/.bash_profile In case of mac

export JAVA_HOME=/Library/Java/JavaVirtualMachines/jdk1.7.0_25.jdk/Contents/Home

vi ~/.bash_profile

export JUNIT_HOME=/usr/share/java/junit-4.10

export CLASSPATH="$CLASSPATH:$JUNIT_HOME/junit.jar:$JUNIT_HOME"

  • Check if that is the junit version, otherwise modify it

source ~/.bash_profile

  • Choose a folder where you want to keep the project git clone or fork this repository

In order to compile the test

javac CalculatorTest.java

java org.junit.runner.JUnitCore CalculatorTest

About

simple tdd exercise with JUnit