11 - Unit Testing With Junit
11 - Unit Testing With Junit
1
Bugs and testing
• software reliability: Probability that a software system will not
cause failure under specified conditions.
▪ Measured by uptime, MTTF (mean time till failure), crash data.
2
Difficulties of testing
• Perception by some developers and managers:
▪ Testing is seen as a novice's job.
▪ Assigned to the least experienced team members.
▪ Done as an afterthought (if at all).
• "My code is good; it won't have bugs. I don't need to test it."
• "I'll just find the bugs by running the client program."
3
Unit testing
• unit testing: Looking for errors in a subsystem in isolation.
▪ Generally a "subsystem" means a particular class or object.
▪ The Java library JUnit helps us to easily perform unit testing.
4
JUnit and Eclipse
• To add JUnit to an Eclipse project, click:
▪ Project → Properties → Build Path → Libraries →
Add Library... → JUnit → JUnit 4 → Finish
5
A JUnit test class
import org.junit.*;
import static org.junit.Assert.*;
@Test
public void name() { // a test case method
...
}
}
6
JUnit assertion methods
assertTrue(test) fails if the boolean test is false
assertFalse(test) fails if the boolean test is true
assertEquals(expected, actual) fails if the values are not equal
assertSame(expected, actual) fails if the values are not the same (by ==)
assertNotSame(expected, actual) fails if the values are the same (by ==)
assertNull(value) fails if the given value is not null
assertNotNull(value) fails if the given value is null
fail() causes current test to immediately fail
7
ArrayList JUnit test
import org.junit.*;
import static org.junit.Assert.*;
public class TestArrayList {
@Test
public void testAddGet1() {
ArrayList list = new ArrayList();
list.add(42);
list.add(-3);
list.add(15);
assertEquals(42, list.get(0));
assertEquals(-3, list.get(1));
assertEquals(15, list.get(2));
}
@Test
public void testIsEmpty() {
ArrayList list = new ArrayList();
assertTrue(list.isEmpty());
list.add(123);
assertFalse(list.isEmpty());
list.remove(0);
assertTrue(list.isEmpty());
}
8
Running a test
• Right click it in the Eclipse Package Explorer at left; choose:
Run As → JUnit Test
• The JUnit bar will show green if all tests pass, red if any fail.
9
JUnit exercise
Given a Date class with the following methods:
▪ public Date(int year, int month, int day)
▪ public Date() // today
▪ public int getDay(), getMonth(), getYear()
▪ public void addDays(int days) // advances by days
▪ public int daysInMonth()
▪ public String dayOfWeek() // e.g. "Sunday"
▪ public boolean equals(Object o)
▪ public boolean isLeapYear()
▪ public void nextDay() // advances by 1 day
▪ public String toString()
@Test
public void test2() {
Date d = new Date(2050, 2, 15);
d.addDays(14);
assertEquals(d.getYear(), 2050);
assertEquals(d.getMonth(), 3);
assertEquals(d.getDay(), 1);
}
}
11
Well-structured assertions
public class DateTest {
@Test
public void test1() {
Date d = new Date(2050, 2, 15);
d.addDays(4);
assertEquals(2050, d.getYear()); // expected
assertEquals(2, d.getMonth()); // value should
assertEquals(19, d.getDay()); // be at LEFT
}
@Test
public void test2() {
Date d = new Date(2050, 2, 15);
d.addDays(14);
assertEquals("year after +14 days", 2050, d.getYear());
assertEquals("month after +14 days", 3, d.getMonth());
assertEquals("day after +14 days", 1, d.getDay());
} // test cases should usually have messages explaining
} // what is being checked, for better failure output
12
Expected answer objects
public class DateTest {
@Test
public void test1() {
Date d = new Date(2050, 2, 15);
d.addDays(4);
Date expected = new Date(2050, 2, 19);
assertEquals(expected, d); // use an expected answer
} // object to minimize tests
13
Naming test cases
public class DateTest {
@Test
public void test_addDays_withinSameMonth_1() {
Date actual = new Date(2050, 2, 15);
actual.addDays(4);
Date expected = new Date(2050, 2, 19);
assertEquals("date after +4 days", expected, actual);
}
// give test case methods really long descriptive names
@Test
public void test_addDays_wrapToNextMonth_2() {
Date actual = new Date(2050, 2, 15);
actual.addDays(14);
Date expected = new Date(2050, 3, 1);
assertEquals("date after +14 days", expected, actual);
}
// give descriptive names to expected/actual values
}
14
What's wrong with this?
public class DateTest {
@Test
public void test_addDays_addJustOneDay_1() {
Date actual = new Date(2050, 2, 15);
actual.addDays(1);
Date expected = new Date(2050, 2, 16);
assertEquals(
"should have gotten " + expected + "\n" +
" but instead got " + actual\n",
expected, actual);
}
...
}
15
Good assertion messages
public class DateTest {
@Test
public void test_addDays_addJustOneDay_1() {
Date actual = new Date(2050, 2, 15);
actual.addDays(1);
Date expected = new Date(2050, 2, 16);
assertEquals("adding one day to 2050/2/15",
expected, actual);
}
...
}
16
Tests with a timeout
@Test(timeout = 5000)
public void name() { ... }
@Test(timeout = TIMEOUT)
public void name() { ... }
17
Pervasive timeouts
public class DateTest {
@Test(timeout = DEFAULT_TIMEOUT)
public void test_addDays_withinSameMonth_1() {
Date d = new Date(2050, 2, 15);
d.addDays(4);
Date expected = new Date(2050, 2, 19);
assertEquals("date after +4 days", expected, d);
}
@Test(timeout = DEFAULT_TIMEOUT)
public void test_addDays_wrapToNextMonth_2() {
Date d = new Date(2050, 2, 15);
d.addDays(14);
Date expected = new Date(2050, 3, 1);
assertEquals("date after +14 days", expected, d);
}
@Test(expected = ArrayIndexOutOfBoundsException.class)
public void testBadIndex() {
ArrayIntList list = new ArrayIntList();
list.get(4); // should fail
}
19
Setup and teardown
@Before
public void name() { ... }
@After
public void name() { ... }
@BeforeClass
public static void name() { ... }
@AfterClass
public static void name() { ... }
20
Tips for testing
• You cannot test every possible input, parameter value, etc.
▪ So you must think of a limited set of tests likely to expose bugs.
21
What's wrong with this?
public class DateTest {
// test every day of the year
@Test(timeout = 10000)
public void tortureTest() {
Date date = new Date(2050, 1, 1);
int month = 1;
int day = 1;
for (int i = 1; i < 365; i++) {
date.addDays(1);
if (day < DAYS_PER_MONTH[month]) {day++;}
else {month++; day=1;}
assertEquals(new Date(2050, month, day), date);
}
}
22
Trustworthy tests
• Test one thing at a time per test method.
▪ 10 small tests are much better than 1 test 10x as large.
@Test(timeout = DEFAULT_TIMEOUT)
public void addDays_wrapToNextMonth_2() {
addHelper(2050, 2, 15, +14, 2050, 3, 1);
}
27