Learning Patterns Your Source for Quality Technology Courseware

Java Testing with JUnit 5

This course introduces experienced Java developers to the fundamentals and best practices in unit testing. It uses the JUnit 5 and Mockito libraries, both of which are ubiquitous in the Java community. It is intended for both developers who are new to testing, as well as those who are already familiar with it, but want more experience with testing using JUnit 5.

Note that JUnit 5 is substantively different than JUnit 4. Although the core testing principles are the same, there are substantial implementation differences, important new features, and a brand new extension model. Developers with JUnit 3 and 4 experience will be well-served by the course.

Testing with mocks is covered in detail, using Mockito. Mocking is a standard technique, and we’ll go beyond the basics to introduce more flexible options, as well as Mockito’s dependency injection facilities. We use the new MockitoExtension to integrate Mockito into JUnit tests.

We explore testing enterprise components in the persistence, service, and web layers, outlining the issues involved in each. In the persistence layer, we show how to set up and use an embedded database, and contrast this to using mocks or fakes as a standalone alternative. We examine the unique issues in database testing with regard to test repeatability and independence, using various techniques for auto-rollback of transactions.

In-container testing is introduced as a more meaningful approach to testing enterprise components, vs. standalone testing with mocks, and we examine this at each of the main layers in an enterprise application.

Best practices are emphasized and demonstrated throughout, and our goal is to make you “test infected,” so that your development effort is as much about good testing and writing testable code as it is about writing the business code itself.

The student is expected to have a good working knowledge of Java and OO, including the use of interfaces, abstract classes, collections, factories, and generics. Experience with Java 8 lambda expressions is helpful, but not strictly required. A brief primer on the Java 8 features employed by JUnit is included in the course and covered if necessary.

Course Information:

Course Code: JTEST

Price: $ 100

Duration: 2 days

Labs: many hands-on labs (minimum 50% of course)

Prerequisites: Working knowledge of Java programming, including use of inheritance, interfaces, and exceptions

Supported Software Environments:

  • Standard: Java 8 and Eclipse IDE
  • Standard: Java 11 and Eclipse IDE
  • Other Available IDEs IntelliJ IDEA, IBM RAD (upon request)
(Non-standard software may require additional wait and incur additional charges.)

Course Objectives:

  • Understand new JUnit 5 library structure, role of each component, and how they interact
  • Configure IDE projects to run tests natively, and via Maven Surefire
  • Write cohesive and effective tests, and design classes for testability
  • Understand the full test lifecycle, and employ it to configure test fixtures
  • Run tests using all available mechanisms: IDE, Maven, JUnit Console Launcher, Launcher API
  • Use test discovery and filtering to define and run test plans, including conditional test execution
  • Employ naming conventions at every level - test name, classname, display name
  • Organize tests with assertion groups and nested tests
  • Use test interfaces to apply good OO principles to testing
  • Understand the new JUnit extension model, and how to write and use them
  • Understand JUnit 4 compatibility and migration
  • Use mock objects with Mockito to support isolated testing
  • Explore Mockito’s facilities for dependency injection of mocks
  • Use argument matchers for more generalized testing with mocks
  • Implement partial mocking with spies
  • Understand the issues in testing enterprise components
  • Understand the two basic approaches: standalone testing with mocks, and in-container testing
  • Test database access components, using both fakes and an embedded database
  • Understand the additional issues involved in testing the service and web layers
  • Exercise best practices throughout the testing effort

Course Outline:

  • Session 1: Unit Testing with JUnit 5
    • Overview
      • Introducing JUnit 5
      • JUnit 5 Library Components
      • Writing and Running Tests
    • Tests and Assertions
      • Test Methods
      • Assertions in Depth
      • Assertion Messages
    • Test Fixtures and Lifecycle
      • @BeforeEach, @AfterEach
      • @BeforeAll, @AfterAll
      • Test Lifecycle
  • Session 2: Writing and Running Tests
    • Java 8 Features Used in JUnit 5
    • Additional Testing Needs - Exceptions, Timeouts, Assertion Groups
    • Running Tests
      • IDE Support
      • maven support
      • JUnit Platform Console Launcher
      • Test Discovery and Selection
      • Test Configuration
      • Nested Tests
    • Advanced Capabilities
      • Extensions
      • Callbacks and Insertion Points
      • Conditional Test Execution
      • Parameterized Tests
    • JUnit 4 Migration
    • Best Practices
  • Session 3: Testing with Mocks
    • Overview and Mockito Introduction
    • Creating and Using Mocks
      • The Mockito Class and Mock Creation
      • Mock Creation with JUnit 5
      • Stubbing
    • Additional Capabilities
      • Argument Matchers
      • Partial Mocking with Spies
      • Dependency Injection with Mocks
  • Session 4: Testing Enterprise Components
    • Overview
      • Types of Testing
      • Standalone vs In-Container Testing
    • Testing the Persistence Layer
    • Testing Services
    • Testing Web Components