Udemy
    •  
    •  
    •  
    •  
    •  
    •  
    •  
    •  
Turn what you know into an opportunity and reach millions around the world.
Learn More
Your cart is empty.
Keep shopping
Learn by Example: JUnit
Rating: 4.0 out of 5(145 ratings)
2,937 students

Learn by Example: JUnit

A comprehensive guide to JUnit with 25 solved examples
Created byLoony Corn
Last updated 12/2016
English

What you'll learn

  • Test functionality of Java applications using JUnit
  • Write test cases using Assertions and Matchers
  • Create mock objects to test interdependent classes
  • Run multiple test classes under different conditions

Course content

8 sections26 lectures2h 46m total length
  • You, This Course and Us1:44

    Let's start with an introduction. We'll understand what JUnit can do for us and what's covered in the course. 

Requirements

  • Experience in Java programming and familiarity with using Java frameworks

Description

JUnit is one of a family of unit testing frameworks all built with the same philosophy. To abstract the programmer away from the mechanics of running tests. You concentrate on testing the functionality of the application, and the logistics of running, monitoring and displaying results is taken care of by the framework.

In this course, we’ll be writing simple tests using all the different features of JUnit tests. Using 25 solved examples, you'll get a complete overview of the JUnit framework and all the functionality within.

What's covered?

1) Assertions : the fundamental component of any Junit test
2) Matchers : Write complicated tests in a very readable way. Implement your own custom matchers
3) Assumptions : Check for preconditions and external dependencies

4) Fixtures : Setup and Cleanup for your tests

5) Runners : Understand what goes on under the hood in JUnit. Use different runners to run multiple test classes with different conditions and parameters
4) Mockito : Understand the concept of mock objects and use the Mockito framework to run tests on interdependent classes.

Who this course is for:

  • Yep! Software Engineers who are looking to learn how to test Java applications
  • Yep! Students learning Java who want to get familiar with testing