Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7433911
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 29, 20262026-05-29T09:44:54+00:00 2026-05-29T09:44:54+00:00

How to write a unit testing case for custom spring validator implementation class .

  • 0

How to write a unit testing case for custom spring validator implementation class . For example

public class RegistrationValidator implements Validator.

Just wanted to know the various approaches . Am new to spring so exploring all options.

Thanks,
S

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-29T09:44:55+00:00Added an answer on May 29, 2026 at 9:44 am

    Create an Errors object,
    Create an instance of your Validator,

    invoke yourValidator(testData, errors)

    Check that Errors is modified in the way you expected, in dependence to testData

    @Test
    public void testValidateWithUserWithoutLogin() {
        User u = new User(); //your domain object, for example a user with "login=null"
    
        Errors errors = new BeanPropertyBindingResult(u, "u");
    
        MyValidator validator = newValidator();
    
        validator.validate(p, errors);  // 'validator' under test
    
        assertTrue(errors.hasErrors());
        assertNotNull( errors.getFieldError("login") );
    }
    

    BTW: you should have a look at JSR 303-Bean Validation, it is also supported by Spring 3.0. But it is easyer to use (less code) for the most use cases.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I'm trying to write a C# unit test with VS 2008's built-in unit testing
Personally I really prefer Unit Testing and write them for good coverage. (let's say
I'm new to unit testing and nUnit (2.48). I'd like to write a test
I am novice to the Moq and unit testing. I have to write unit
I am new to unit testing, just getting into it using Check for C.
We've been trying write unit tests for a worker class written in C#, which
Im am just getting introduced to unit testing and test driven development. Thus far,
I want to write unit tests with NUnit that hit the database. I'd like
I'm trying to write unit tests in MSTest and I've created two TestClasses. When
I am trying to write unit tests for a bit of code involving Events.

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.