show/hide this revision's text 2 added 226 characters in body

I am currently writing some unit tests for a business-logic class that includes validation routines. For example:

public User CreateUser(string username, string password, UserDetails details)
{
    ValidateUserDetails(details);
    ValidateUsername(username);
    ValidatePassword(password);

    // create and return user
}

Should my unit-test test fixture contain tests for every possible validation error that can occur in the Validate* methods, or is it better to leave that for a separate testset of tests? Or perhaps the validation logic should be refactored out somehow?

My reasoning is that if I decide to test for all the validation errors that can occur within CreateUser, the test fixture will become quite bloated. And most of the validation methods are used from more than one place...

Any great patterns or suggestions in this case?

show/hide this revision's text 1

Unit-tests and validation logic

I am currently writing some unit tests for a business-logic class that includes validation routines. For example:

public User CreateUser(string username, string password, UserDetails details)
{
    ValidateUserDetails(details);
    ValidateUsername(username);
    ValidatePassword(password);

    // create and return user
}

Should my unit-test test for every possible validation error that can occur in the Validate* methods, or is it better to leave that for a separate test? Or perhaps the validation logic should be refactored out somehow?

Any great patterns or suggestions in this case?