Categories:
Audio (13)
Biotech (29)
Bytecode (35)
Database (77)
Framework (7)
Game (7)
General (512)
Graphics (53)
I/O (32)
IDE (2)
JAR Tools (86)
JavaBeans (16)
JDBC (89)
JDK (337)
JSP (20)
Logging (103)
Mail (54)
Messaging (8)
Network (71)
PDF (94)
Report (7)
Scripting (83)
Security (32)
Server (119)
Servlet (17)
SOAP (24)
Testing (50)
Web (19)
XML (301)
Other Resources:
Sample Program for junit-3.8.1.jar
How to write a Sample program to use junit-3.8.1.jar?
✍: FYIcenter.com
JUnit is a simple framework to write repeatable tests for Java applications.
In order to use junit-3.8.1.jar,
we need to write a simple Java application, Calculator.java:
// Copyright (c) 2015 FYIcenter.com public class Calculator { public int evaluate(String expression) { int sum = 0; for (String summand: expression.split("\\+")) sum += Float.valueOf(summand); return sum; } }
This sample Java program is simple. But it does have some issues:
Let's write JUnit test program, CalculatorTest.jar, to show those issues:
// Copyright (c) 2015 FYIcenter.com import junit.framework.TestCase; public class CalculatorTest extends TestCase { public void testAddition() { Calculator calculator = new Calculator(); int sum = calculator.evaluate("1+2+3"); assertEquals(6, sum); } public void testFraction() { Calculator calculator = new Calculator(); int sum = calculator.evaluate("2.4+2.6"); assertEquals(5, sum); } public void testSubtraction() { Calculator calculator = new Calculator(); int sum = calculator.evaluate("10-1"); assertEquals(9, sum); } }
This JUnit test program does the following:
Of course, you need to compile them with JDK to make them ready to run:
\fyicenter>java -version java version "1.8.0_45" \fyicenter>javac Calculator.java \fyicenter>javac -cp .;\local\lib\junit-3.8.1.jar CalculatorTest.java
Note that you need to provided junit-3.8.1.jar in the classpath to compile CalculatorTest.java.
Back to FAQ for JUnit (Java Unit) Testing.
2016-03-09, 2629👍, 0💬
Popular Posts:
What Is poi-contrib-3.5.jar? poi-contrib-3.5.jar is one of the JAR files for Apache POI 3.5, which p...
What is jxl.jar 2.6.12? jxl.jar 2.6.12 is the JAR file for Java Excel API 2.6.12, which is a Java li...
What Is poi-scratchpad-3.5.jar? poi-scratchpad-3.5.jar is one of the JAR files for Apache POI 3.5, w...
What Is activation.jar? I heard it's related to JAF (JavaBeans Activation Framework) 1.0.2? The if y...
What Is commons-lang3-3.1.jar? commons-lang3-3.1.jar is the JAR file for Apache Commons Lang 3.1, wh...