Book Image

MOCKITO COOKBOOK

By : Grzejszczak
Book Image

MOCKITO COOKBOOK

By: Grzejszczak

Overview of this book

This is a focused guide with lots of practical recipes with presentations of business issues and presentation of the whole test of the system. This book shows the use of Mockito's popular unit testing frameworks such as JUnit, PowerMock, TestNG, and so on. If you are a software developer with no testing experience (especially with Mockito) and you want to start using Mockito in the most efficient way then this book is for you. This book assumes that you have a good knowledge level and understanding of Java-based unit testing frameworks.
Table of Contents (12 chapters)
11
Index

Stubbing methods so that they throw exceptions

In this recipe, we will stub a method that returns a value so that it throws an exception. Since we want our code to be beautiful, we'll use the catch-exception library to catch and check the exceptions thrown in our system.

Getting ready

Ensure that you have the catch-exception library on your classpath; refer to the Stubbing methods so that they throw exceptions recipe of Chapter 4, Stubbing Behavior of Mocks, for details on how to add catch-exception to your project.

This recipe will reuse the example from the previous recipe. We have a class that calculates an average value of tax factors (AverageTaxFactorCalculator) and TaxFactorFetcher is the provider of those values. One of the values is picked from the database (and we'll stub that method). We will test those two classes as a unit. For your convenience (so that you don't scroll around the book too much), I'm showing you the classes here (don't worry, they&apos...