image
Unit Testing
Unit Testing
Difficulty
Beginner
Duration
57m
Students
217
Ratings
4/5
starstarstarstarstar-border
Description

Test-Driven Development (TDD) is a discipline that helps to create error-free, quality code, and drives productivity by reducing and eliminating errors as well as providing many other benefits.

In these video tutorials, you will learn about TDD, its key principles and practices, and be introduced to test-driven development with JUnit5. 

Select play to begin your journey through the following tutorials.

  • Test-Driven Development [4m 47s]
  • Unit Testing [7m 11s]
  • JUnit5 Introduction [7m 12s]
  • Java Bitcoin Library Design Review and Tooling Setup [4m 48s]
  • Initial Project Setup Using Maven and First Set of JUnit5 Unit Tests [24m 3s]
Transcript

Welcome back. In this lesson, I'm going to provide you with a quick review of unit testing, what it is, and how you go about performing it yourself. I'll reveal the basic structure of a unit test, as well as highlighting best practices for naming and building your own.

Let's begin. Up until now, I've largely referred to test-driven development tests, being just that, tests. But what are they really, in a real-world, software engineering project. Most often, test-driven development tests, are implemented as unit tests. A unit test is exactly that, a test that is focused on testing a discrete or smaller part of a larger system and done so in an isolated manner.

A unit test in the context of this course tests the runtime behaviors of a class in isolation. A Java class is, as we all know, nothing more than a template for constructing objects at runtime. A class typically contains methods and properties, which implement and manage both the state and behavior, within an object instantiation of that class. Therefore, unit tests that target and test Java classes, need to test and validate each of the individual methods, implemented within the class file.

Unit tests should focus on testing the behaviors of a class and nothing more. By this very definition, they should execute fast, mostly in a matter of seconds and entirely in memory. This in fact, is the defining property of a unit test. It's not uncommon to execute hundreds of unit tests in a matter of seconds.

If a unit test instead takes a very long time to run, perhaps minutes to execute, then it's probably not a unit test but, instead, a misplaced integration test. Meaning this test should be moved elsewhere. Examples of this include, a test involving network communication, a test reading or writing to a file system, a test transacting with a database, or a test involving console input or interaction from a user.

Again, to reiterate, unit tests are meant to execute fast. If they don't, then they probably aren't unit tests. When it comes to performing Java-based unit testing, there are many unit testing frameworks available to choose from, but rather than calling all of them out, I'll quickly review the most popular one, that being JUnit. JUnit is an open-source, unit testing framework, and currently is available in two main versions, JUnit 4 and JUnit 5. The newer version, JUnit 5, adopts the Java-like style of coding and is considered more robust and flexible, than its predecessor.

In this course, I've chosen to go with JUnit 5. JUnit 5 provides an intuitive interface for crafting a unit test. It's quick and easy to install and just as easy to begin creating unit tests. In terms of learning JUnit 5, the good news is, as already mentioned, it's highly intuitive and therefore, very easy to learn as you'll witness, when observing the given demonstrations.

Let's now take a quick look at what a unit test, actually looks like. In the given example displayed here, we have created a single unit test that tests a static method, declared within the calculator class. The unit test itself has been developed, using the JUnit 5, unit testing framework, which I'll go into deeper in the next lesson.

Next, I want to highlight that unit tests, are most often structured, using the Arrange-Act-Assert pattern, sometimes referred to as the triple A pattern. The parts of this pattern include the arrange part. This is used to set up the code under test. Here, objects being tested get instantiated. Marks, if used, are set up and expectations are set. The act part is used to execute the method and behavior, under test. In the assert part, here, assertions are defined to check whether specified expectations were met or not. Following the Arrange-Act-Assert pattern, will help other members of your development team to quickly understand the intention of your unit test.

Moving along, when it comes to naming standards for your unit test, there's no hard and fast rule, which is enforced at compile or runtime. However, do consider carefully, the way you name your unit tests, particularly the method names. Your test method names can help others who are unfamiliar, with your unit test, understand the specific unit under test and expected behaviors and outcomes for particular states. 

Now, before I promote an actual test naming strategy, let's first review motives for such a strategy. One, test names should make reference to the method under test. Two, test names should express the overall intention of the method under test. Three, test names should make reference to both the inputs or state and their resultant output or expectation. And four, test names, collectively should describe, the overall behavior of the unit or class under test.

Now that I've covered off the motives for a successful unit test naming strategy, let's formalize it by stating the naming strategy, which I'll use, and the later given test-driven development, coding demonstrations. For the demonstrations provided within this course, the particular naming strategy I'll use, will be the following.

This naming strategy breaks down from left to right. The name of the method being tested, underscore, the state being introduced or tested within the method underscore, and then the expected resulting behavior. With this naming strategy, it should be very clear to someone new to the project, exactly what is being tested.

Examples following this particular naming strategy for our class, let's say, for example, influence, a square root function would be square root, underscore, positive number, underscore, returns valid square root. Square root, underscore, zero, underscore, returns zero. And square root, underscore, negative number, underscore, throws exception. This unit test naming strategy makes it very clear, as to what is being tested. The state the test is acting on, and the expected outcomes.

Okay, that now completes this lesson on unit test. In this lesson, you learned about what a unit test is. You learned that a unit test is designed to test the runtime behaviors of a class and nothing else. You learned that unit tests should run very fast, in a matter of seconds. You learned that unit tests are best structured, using the Arrange-Act-Assert pattern. And, you learned that naming your unit test appropriately, will help others understand quickly and easily, the intention of your unit test.

Go ahead now and close this lesson and I'll see you shortly in the next one.

About the Author
Students
39271
Labs
161
Courses
1561
Learning Paths
41

A world-leading tech and digital skills organization, we help many of the world’s leading companies to build their tech and digital capabilities via our range of world-class training courses, reskilling bootcamps, work-based learning programs, and apprenticeships. We also create bespoke solutions, blending elements to meet specific client needs.