Unit Testing. and. JUnit

Similar documents
Unit Testing. and. JUnit

+ Introduction to JUnit. IT323 Software Engineering II By: Mashael Al-Duwais

Slides prepared by : Farzana Rahman TESTING WITH JUNIT IN ECLIPSE

Unit Testing and JUnit

JUnit. Introduction to Unit Testing in Java

Unit Testing JUnit and Clover

Approach of Unit testing with the help of JUnit

Author: Sascha Wolski Sebastian Hennebrueder Tutorials for Struts, EJB, xdoclet and eclipse.

TESTING WITH JUNIT. Lab 3 : Testing

JUnit Automated Software Testing Framework. Jeff Offutt. SWE 437 George Mason University Thanks in part to Aynur Abdurazik. What is JUnit?

Licensed for viewing only. Printing is prohibited. For hard copies, please purchase from

Java. Java. e=mc 2. composition

Java course - IAG0040. Unit testing & Agile Software Development

Java Unit testing with JUnit 4.x in Eclipse

UNIVERSITY OF CALIFORNIA Department of Electrical Engineering and Computer Sciences Computer Science Division. P. N. Hilfinger

Software Quality Exercise 2

Hands on exercise for

Testing, Debugging, and Verification

Effective unit testing with JUnit

Unit Testing with FlexUnit. by John Mason

How to Write AllSeen Alliance Self- Certification Test Cases September 25, 2014

Test Driven Development

Unit-testing with JML

Designing with Exceptions. CSE219, Computer Science III Stony Brook University

Table of Contents. LESSON: The JUnit Test Tool...1. Subjects...2. Testing What JUnit Provides...4. JUnit Concepts...5

Unit Testing & JUnit

UNIT TESTING. Written by Patrick Kua Oracle Australian Development Centre Oracle Corporation

CI/CD Cheatsheet. Lars Fabian Tuchel Date: 18.March 2014 DOC:

JUnit Howto. Blaine Simpson

JUnit - A Whole Lot of Testing Going On

Build management & Continuous integration. with Maven & Hudson

CSE 326: Data Structures. Java Generics & JUnit. Section notes, 4/10/08 slides by Hal Perkins

Software project management. and. Maven

Writing Self-testing Java Classes with SelfTest

Tools for Integration Testing

Agile/Automated Testing

Software project management. and. Maven

Continuous Integration Multi-Stage Builds for Quality Assurance

Using JUnit in SAP NetWeaver Developer Studio

Jiří Tomeš. Nástroje pro vývoj a monitorování SW (NSWI026)

Introduction to C Unit Testing (CUnit) Brian Nielsen Arne Skou

OVERVIEW OF TESTING FIRST

Jemmy tutorial. Introduction to Jemmy testing framework. Pawel Prokop. March 14,

SpiraTest / SpiraTeam Automated Unit Testing Integration & User Guide Inflectra Corporation

Aspect Oriented Programming. with. Spring

Plugin JUnit. Contents. Mikaël Marche. November 18, 2005

Maven or how to automate java builds, tests and version management with open source tools

the first thing that comes to mind when you think about unit testing? If you re a Java developer, it s probably JUnit, since the

Capabilities of a Java Test Execution Framework by Erick Griffin

CPSC 330 Software Engineering

Upping the game. Improving your software development process

Tutorial for Spring DAO with JDBC

Chapter 1: Web Services Testing and soapui

CS506 Web Design and Development Solved Online Quiz No. 01

Going Interactive: Combining Ad-Hoc and Regression Testing

SOLoist Automation of Class IDs Assignment

Tutorial IV: Unit Test

IBM Tivoli Workload Scheduler Integration Workbench V8.6.: How to customize your automation environment by creating a custom Job Type plug-in

Java Interview Questions and Answers

Test-Driven Development

Tes$ng Hadoop Applica$ons. Tom Wheeler

A Practical Guide to Test Case Types in Java

Unit testing with JUnit and CPPUnit. Krzysztof Pietroszek

Testing Tools Content (Manual with Selenium) Levels of Testing

Testing Methodology Assignment 1 Unit testing using JUnit

Agile.NET Development Test-driven Development using NUnit

Test Automation Integration with Test Management QAComplete

Unit Testing with zunit

BDD FOR AUTOMATING WEB APPLICATION TESTING. Stephen de Vries

First Java Programs. V. Paúl Pauca. CSC 111D Fall, Department of Computer Science Wake Forest University. Introduction to Computer Science

Automated performance testing using Maven & JMeter. George Barnett, Atlassian Software

CS170 Lab 11 Abstract Data Types & Objects

Running and Testing Java EE Applications in Embedded Mode with JupEEter Framework

Smarter Testing With Spock

Software infrastructure for Java development projects

Sonatype CLM for Maven. Sonatype CLM for Maven

Announcement. SOFT1902 Software Development Tools. Today s Lecture. Version Control. Multiple iterations. What is Version Control

CSE 308. Coding Conventions. Reference

AP Computer Science Java Subset

Survey of Unit-Testing Frameworks. by John Szakmeister and Tim Woods

CS 2112 Spring Instructions. Assignment 3 Data Structures and Web Filtering. 0.1 Grading. 0.2 Partners. 0.3 Restrictions

Tutorial for Creating Resources in Java - Client

Tutorial 7 Unit Test and Web service deployment

ID TECH UniMag Android SDK User Manual

Appium mobile test automation

J a v a Quiz (Unit 3, Test 0 Practice)

LAB4 Making Classes and Objects

Test Driven Development

Fail early, fail often, succeed sooner!

Introduction to unit testing with Java, Eclipse and Subversion

Improve your tests with Mutation Testing. Nicolas Fränkel

Coding in Industry. David Berry Director of Engineering Qualcomm Cambridge Ltd

Getting Started with the Internet Communications Engine

Kohsuke Kawaguchi Sun Microsystems, Inc. hk2.dev.java.net, glassfish.dev.java.net. Session ID

GlassFish v3. Building an ex tensible modular Java EE application server. Jerome Dochez and Ludovic Champenois Sun Microsystems, Inc.

Drupal CMS for marketing sites

This section provides a 'Quickstart' guide to using TestDriven.NET any version of Microsoft Visual Studio.NET

webmunit for WebMethods Integration Server

Using Testing and JUnit Across The Curriculum

Vim, Emacs, and JUnit Testing. Audience: Students in CS 331 Written by: Kathleen Lockhart, CS Tutor

Transcription:

Unit Testing and JUnit

Problem area Code components must be tested! Confirms that your code works Components must be tested in isolation A functional test can tell you that a bug exists in the implementation A unit test tells you where the bug is located <using> Component A <using> Test failure! But where is the bug? Component B Component C

Example: The Calculator public interface Calculator int add( int number1, int number2 ); int multiply( int number1, int number2 ); public class DefaultCalculator implements Calculator public int add( int number1, int number2 ) return number1 + number2; public int multiply( int number1, int number2 ) return number1 * number2;

Approaches to unit testing Write a small command-line program, enter values, and verify output Involves your ability to type numbers Requires skills in mental calculation Doesn t verify your code when its released

Approaches to unit testing Write a simple test program Objective and preserves testing efforts Requires you to monitor the screen for error messages Inflexible when more tests are needed public class TestCalculator public static void main( String[] args ) Calculator calculator = new DefaultCalculator(); int result = calculator.add( 8, 7 ); if ( result!= 15 ) System.out.println( Wrong result: + result );

The preferred solution Use a unit testing framework like JUnit A unit is the smallest testable component in an application A unit is in most cases a method A unit does not depend on other components which are not unit tested themselves Focus on whether a method is following its API contract Component A Unit test A <using> <using> Unit test B Component B Component C Unit test C

JUnit De facto standard for developing unit tests in Java One of the most important Java libraries ever developed Made unit testing easy and popular among developers Driven by annotations Spring provides integration with JUnit

Using Junit annotations No need to follow naming conventions Tests identified by the @Test annotation Fixture methods identified by @Before and @After annotations Class-scoped fixture Identified by the @BeforeClass and @AfterClass annotations Useful for setting up expensive resources, but be careful... Ignored tests Identified by the @Ignore annotation Useful for slow tests and tests failing for reasons beyond you Timed tests Identified by providing a parameter @Test( timeout=500 ) Useful for benchmarking, network, deadlock testing

Test fixtures Tests may require common resources to be set up Complex data structures Database connections A fixture is a set of common needed resources A fixture can be created By overriding setup and teardown from TestCase Using @Before & @After setup is invoked before each test, teardown after Test lifecycle setup() @Before testxxx() teardown() @After

JUnit Calculator test Static import of Assert import static junit.framework.assert.*; public class CalculatorTest Calculator calculator; Fixture Test identified by the @Test annotation. Use assertequals to verify output @Before public void before() calculator = new DefaultCalculator(); @Test public void add() int sum = calculator.add( 8, 7 ); assertequals( sum, 15 ); @Test public void subtract()

Example: The EventDAO Event object public class Event() private int id; private String title; private Date date; // constructors // get and set methods EventDAO interface public interface EventDAO int saveevent( Event event ); Event getevent( int id ); void deleteevent( Event event );

EventDAOTest Assert imported statically import static junit.framework.assert.assertequals; Fixture method identified by the @Before annotation Test @Before public void init() eventdao = new MemoryEventDAO(); event = new Event( U2 concert, date ); @Test public void saveevent() int id = eventdao.saveevent( event ); event = eventdao.getevent( id ); assertequals( id, event.getid() ); Test being ignored @Test @Ignore Public void getevent() // Testing code...

The Assert class Contains methods for testing whether: Conditions are true or false Objects are equal or not Objects are null or not If the test fails, an AssertionFailedError is thrown methods have overloads for various parameter types

Assert methods Method Description asserttrue( boolean ) Asserts that a condition is true. asserttrue( String, boolean ) Asserts that a condition is true, and prints message assertfalse( boolean ) Asserts that a condition is false. assertequals( Object, Object ) Asserts that two objects are equal. assertnotnull( Object ) Asserts that an object is not null. assertnull( Object ) Asserts that an object is null. assertsame( Object, Object ) Asserts that two references refer to the same object. assertnotsame( Object, Object ) Asserts that two references do not refer to the same object. fail( String ) Asserts that a test fails, and prints the given message.

Assert in EventDAOTest @Test public void saveevent() int id = eventdao.saveevent( event ); Asserts that the saved object is equal to the retrieved object event = eventdao.getevent( id ); assertequals( id, event.getid() ); assertequals( U2 concert, event.gettitle() ); Saves and retrieves an Event with the generated identifier An object is expected @Test public void getevent() int id = eventdao.saveevent( event ); event = eventdao.getevent( id ); assertnotnull( event ); Asserts that null is returned when no object exists event = eventdao.getevent( -1 ); assertnull( event );

Testing Exceptions Methods may be required to throw exceptions Expected exception can be declared as an annotation @Test( expected = UnsupportedOperationException.class ) Annotation declares that an exception of class UnsupportedOperationException is supposed to be thrown @Test( expected = UnsupportedOperationException.class ) public void dividebyzero() calculator.divide( 4, 0 );

Running JUnit Textual test runner Used from the command line Easy to run Integrate with Eclipse Convenient, integrated testing within your development environment! Integrate with Maven Gets included in the build lifecycle!

JUnit with Eclipse Eclipse features a JUnit view Provides an informative GUI displaying test summaries Lets you edit the code, compile and test without leaving the Eclipse environment

JUnit with Maven Maven provides support for automated unit testing with JUnit Unit testing is included in the build lifecycle Verifies that existing components work when other components are added or changed Add dependency to POM to put JUnit on the classpath <dependency> <groupid>junit</groupid> <artifactid>junit</artifactid> <version>4.4</version> </dependency> Execute the Maven test phase $ mvn test

JUnit with Maven Maven requires all test-class names to contain Test Standard directory for test classes is src/test/java The test phase is mapped to the Surefire plugin Surefire will generate reports based on your test runs Reports are located in target/surefire-reports

Best practises One unit test for each tested method Makes debugging easier Easier to maintain Choose descriptive test method names TestCase: Use the testxxx naming convention Annotations: Use the method signature of the tested method Automate your test execution If you add or change features, the old ones must still work Also called regression testing Test more than the happy path Out-of-domain values Boundary conditions

Advantages of unit testing Improves debugging Easy to track down bugs Facilitates refactoring Verifies that existing features still work while changing the code structure Enables teamwork Lets you deliver tested components without waiting for the whole application to finish Promotes object oriented design Requires your code to be divided in small, re-usable units Serving as developer documentation Unit tests are samples that demonstrates usage of the API

Resources Vincent Massol: JUnit in Action Two free sample chapters http://www.manning.com/massol JUnit home page (www.junit.org) Articles and forum Articles http://www-128.ibm.com/developerworks/java/library/j-junit4.html http://www-128.ibm.com/developerworks/opensource/library/os-junit/ Spring documentation chapter 8