I'm new to Pex and Moles. I am trying to run Pex on my code but I am using Constructor injection. Is there a way of instructing Pex on how to inject the constructors?

Edit

    public UserLogic(IUserRepository userRepository)
    {
        _userRepository = userRepository;
    }

    public int GetUsersAge(int id)
    {
        User user = _userRepository.GetById(id);
        DateTime DOB = user.DOB;
        DateTime now = DateTime.Today;
        int age = now.Year - DOB.Year;
        if (DOB > now.AddYears(-age)) age--;
        return age;
    }

I need to inject a stub userRepository. Pex is failing with a NullReferenceException when _userRepository.GetById(id) is called. I have been using Moq for my unit tests but i want to switch to pex and moles

Should i use PexFactories to create my stubs?

link|improve this question

39% accept rate
Show some code, you can replace any code with moles. – peer Dec 7 '11 at 13:59
This is not entirely true, there are some scenarios where you won't be able to use Moles (e.g. social.msdn.microsoft.com/Forums/en-US/pex/thread/…) – Gorgsenegger Jan 13 at 5:56
One more thing, I think if you have the chance to design your application from scratch you should generally be fine with MOQ as long as you interfaces etc. properly. Moles can help with legacy code which you may not be able / allowed / ... to change anymore. – Gorgsenegger Jan 13 at 5:58
feedback

1 Answer

Try passing a Moles Stub type to a Pex-generated parameterized test. To create a parameterized test, right-click the class you want to explore, and then select PEX > Create Parameterized Unit Test. This generates a method in the test class that contains arguments. The individual tests call this parameterized test, sending the individual test arguments.

When the code under test uses dependency injection by way of arguments (it has an interface typed argument), the Pex-generated paramterized test method will also contain the same interface type argument. You are able to write your own test methods that also call the parameterized method, feeding it your own values, including the interface type. Just be sure to not write them in the Pex-generated file!

I also suggest looking at using Mole Stub types, for your unit test injections. The Microsoft Moles Reference Manual is a very good place to start learning about how to use Moles in unit tests. A moles stub type will be created for your interface, when you create the parameterized test. Simply configure the detours for your stub type, and then pass it to the parameterized test.

Creating stub type detours is very easy. I suggest creating a configuration method in the test project, that configures frequently-used detours. I usually add an enumeration flag as an argument to this method, so I can easily tell it which detours to create on certain types, all in one call.

Sample enum:

[Flags()]
public enum MoleConfigurations
{
    MoleSqlClientObjects,
    DisableDirectory_Exists,
    DisableEventLogExtensions,
    DisableInitializeDatabaseObjects,
    DisableInitializeThreadingObjects,
    DisableQueueExistingDataFiles,
    DisableConstructor
}
link|improve this answer
Hi Mike. Ive just been reading the pex posts on your blogg. Thanks for the response. Would it be possible or you to provide a quick example. Ive updated my post with a simple example of what i want. – ministrymason Dec 14 '11 at 11:51
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.