Testing with Junit4

28
1 Testing with JUnit 4

description

Introduction to Junit4

Transcript of Testing with Junit4

Page 1: Testing with Junit4

1

Testing with JUnit 4

Page 2: Testing with Junit4

What is JUnit ?• JUnit is a Regression Testing Framework* for the

Java Programming Language. • One of a family of unit testing frameworks

collectively known as xUnit.• Open source framework

*One of the main reasons for regression testing is to determine whether a change in one part of the software affects other parts of the software

Page 3: Testing with Junit4

Features

•Provides Annotation to identify the test methods.

•Provides Assertions for testing expected results.

•Provides Test runners for running tests.

Page 4: Testing with Junit4

4

Coding Conventionso Name of the test class end with "Test".o Name of the method begin with "test".o Return type of a test method must be

void.o Test method must not throw any

exception.o Test method must not have any

parameter.

Page 5: Testing with Junit4

Simple Testpublic class FooTest {

@Test public void testMultiply() { MyClass tester = new MyClass();

// Tests assertEquals("10 x 0 must be 0", 0, tester.multiply(10, 0)); assertEquals("0 x 10 must be 0", 0, tester.multiply(0, 10)); assertEquals("0 x 0 must be 0", 0, tester.multiply(0, 0)); }

}

Page 6: Testing with Junit4

Component of JUnit

•JUnit test framework provides following important features/component

oFixturesoAssertions (provides Assert API)oTest suites (TestSuite API)oJUnit classes

Page 7: Testing with Junit4

7

Fixtures • Fixtures is a fixed state of a set of objects used as a

baseline for running tests. The purpose of a test fixture is to ensure that there is a well known and fixed environment in which tests are run so that results are repeatable.

- Usage - o Preparation of input data and setup/creation of fake

or mock objectso Loading a database with a specific, known set of datao Copying a specific known set of files creating a test

fixture will create a set of objects initialized to certain states.

Page 8: Testing with Junit4

8

Page 9: Testing with Junit4

Assert

public class Assert extends java.lang.Object

• This class provides a set of assertion methods useful for writing tests. Only failed assertions are recorded.

• JUnit provides overloaded assertion methods for all primitive types and Objects and arrays (of primitives or Objects)

• If fail AssertionFailedError

Page 10: Testing with Junit4

Assert Methods

Page 11: Testing with Junit4

11

Test Suite

•Test suite means bundle a few unit test cases and run it together. In JUnit, both @RunWith and @Suite annotation are used to run the suite test.

Page 12: Testing with Junit4

TestSuite Example

import org.junit.runner.RunWith;import org.junit.runners.Suite;

@RunWith(Suite.class)@Suite.SuiteClasses({ TestFeatureLogin.class,

TestFeatureLogout.class, TestFeatureNavigate.class, TestFeatureUpdate.class

})

public class FeatureTestSuite { // the class remains empty, // used only as a holder for the above annotations}

Page 13: Testing with Junit4

Test execution order• JUnit does not specify the execution order of test method

invocations• From version 4.11, JUnit will by default use a deterministic,

but not predictable, order (MethodSorters.DEFAULT)

• @FixMethodOrder(MethoSorters.JVM): Leaves the test methods in the order returned by the JVM. This order may vary from run to run.

• @FixMethodOrder(MethodSorters.NAME_ASCENDING): Sorts the test methods by method name, in lexicographic order.

Page 14: Testing with Junit4

Some More Features

Page 15: Testing with Junit4

Ignore Test

•Sometimes it happens that our code is not ready and test case written to test that method/code will fail if run or we just don’t want to test that test case at that moment. The @Ignore annotation helps in this regards.

oA test method annotated with @Ignore will not be executed.

o If a test class is annotated with @Ignore then all of its test methods will be ignored.

Page 16: Testing with Junit4

Ignored Test Exampleimport org.junit.Ignore;import org.junit.Test;

@Ignorepublic class IgnoreTest {

@Testpublic void notIgnored(){

System.out.println("this is executed");}

@Ignore@Testpublic void itIsIgnored(){

System.out.println("This test is ignored");}}

Page 17: Testing with Junit4

Time test

• Junit provides a handy option of Timeout. If a test case takes more time than specified number of milliseconds then Junit will automatically mark it as failed. The timeout parameter is used along with @Test annotation.

Page 18: Testing with Junit4

Time Test xampleimport org.junit.Test;

public class TimeTest {@Test(timeout=10)public void testTime(){for(int i=0;i<1000;i++){System.out.println("hiiiiii");}}}

Page 19: Testing with Junit4

Exception Test

•Junit provides a option of tracing the Exception handling of code. You can test the code whether code throws desired exception or not. The expected parameter is used along with @Test annotation.

Page 20: Testing with Junit4

Exception Test Exampleimport org.junit.Test;public class ExceptionTest {

@Test(expected=ArithmeticException.class)public void exception() {

int s=12/0;}

}

Page 21: Testing with Junit4

Parameterized Test• Junit 4 has introduced a new feature Parameterized

tests.Parameterized tests allow developer to run the same test over and over again using different values. There are five steps, that you need to follow to create Parameterized tests.

o Annotate test class with @RunWith(Parameterized.class)o Create a public static method annotated with @Parameters that

returns a Collection of Objects (as Array) as test data set.o Create a public constructor that takes in what is equivalent to

one "row" of test data.o Create an instance variable for each "column" of test data.o Create your tests case(s) using the instance variables as the

source of the test data.

Page 22: Testing with Junit4

Parameterized Test Example

executed three times

Page 23: Testing with Junit4

Rules

•Via the @Rule annotation you can create objects which can be used and configured in your test methods.

•This adds more flexibility to your tests. •Testers can reuse or extend one of the

provided Rules ,or write their own.

Page 24: Testing with Junit4

Rule sample

Page 25: Testing with Junit4

More RulesTemporaryFolder The TemporaryFolder Rule allows creation of

files and folders that are guaranteed to be deleted when the test method finishes (whether it passes or fails):

Timeout The Timeout Rule applies the same timeout to all test methods in a class

TestName The TestName Rule makes the current test name available inside test methods

ErrorCollector The ErrorCollector rule allows execution of a test to continue after the first problem is found (for example, to collect _all_ the incorrect rows in a table, and report them all at once):

ExpectedException The ExpectedException Rule allows in-test specification of expected exception types and messages:

Page 26: Testing with Junit4

Categories

•From a given set of test classes, the Categories runner runs only the classes and methods that are annotated with either the category given with the @IncludeCategory annotation, or a subtype of that category

Page 27: Testing with Junit4