Sign In Start Free Trial
Account

Add to playlist

Create a Playlist

Modal Close icon
You need to login to use this feature.
  • Book Overview & Buying Mockito for Spring
  • Table Of Contents Toc
  • Feedback & Rating feedback
Mockito for Spring

Mockito for Spring

By : Acharya
3 (2)
close
close
Mockito for Spring

Mockito for Spring

3 (2)
By: Acharya

Overview of this book

If you are an application developer with some experience in software testing and want to learn more about testing frameworks, then this technology and book is for you. Mockito for Spring will be perfect as your next step towards becoming a competent software tester with Spring and Mockito.
Table of Contents (7 chapters)
close
close

Unit testing the service layer

RegistrationService validates the following rules:

  • The user ID, password, first name, or last name cannot be empty
  • The first and last names cannot contain numbers
  • The first and last names cannot contain special characters
  • The password should contain at least one special character
  • There cannot be a duplicate user ID

RegistrationService should call the database to determine whether a user ID exists or not. We'll create a data access interface for persisting user and to check whether a duplicate user ID is present. Perform the following steps to build the service, create a data access object API, and unit test the service:

  1. Create a RegistrationDao interface in the com.packt.dao package, and add the following methods to check for duplicate users and to create a new user:
    public interface RegistrationDao {
      boolean isExistingUserId(String userId);
      void create(String userId, String password, String 
            firstName, String lastName);
    }
  2. Modify the RegistrationService...
Visually different images
CONTINUE READING
83
Tech Concepts
36
Programming languages
73
Tech Tools
Icon Unlimited access to the largest independent learning library in tech of over 8,000 expert-authored tech books and videos.
Icon Innovative learning tools, including AI book assistants, code context explainers, and text-to-speech.
Icon 50+ new titles added per month and exclusive early access to books as they are being written.
Mockito for Spring
notes
bookmark Notes and Bookmarks search Search in title playlist Add to playlist font-size Font size

Change the font size

margin-width Margin width

Change margin width

day-mode Day/Sepia/Night Modes

Change background colour

Close icon Search
Country selected

Close icon Your notes and bookmarks

Confirmation

Modal Close icon
claim successful

Buy this book with your credits?

Modal Close icon
Are you sure you want to buy this book with one of your credits?
Close
YES, BUY

Submit Your Feedback

Modal Close icon
Modal Close icon
Modal Close icon