I am trying to use moles with NUnit and am getting the following error "Moles requires tests to be an instrumented process". I am also using Visual NUnit within Visual Studio 2008 to get this working. Any help is welcome.
|
|
This is what I did in order to make Moles work with NUnit:
I found that [Moled] attribute does not work with [TestCase(...)] and it brings you back to the uninstrumented error scenario. Instead the Once you find that everything works, you might consider running moles runner as an external tool within Visual Studio. Follows instructions in Running Moles using NUnit Console from Visual Studio, updating the arguments as in step 6. Please note that this was on a Windows 7 64bit machine, with NUnit 2.5.9, Microsoft Pex and Moles (x86) 0.94.51006.1. Consider your actual folders for different paths, versions, etc. |
|||
|
|
|
I'm using Moles version 0.94.51023.0. As far as I'm aware, you need to add the below attribute to your test method. I'm using the Visual Studio testing framework, not sure if it's the same with NUnit, et. al.
I've also read that you can add the Update: As per the Moles Reference Manual, pg. 26, the MoledAttribute on the test method is the way to go with NUnit. You must register the Microsoft.Moles.NUnit.dll assembly with NUnit by copying it to the NUnit bin/addins folder. Then you would add the
Otherwise, you would add a using block to wrap the test method as below:
|
||||
|
|
|
In addition to adding the [HostType("Moles")] attribute, you need to wrap the test runner with the moles runner. For example:
The Moles runner is probably located in C:\Program Files\Microsoft Moles\bin. For usage, execute:
|
|||
|
|
|
superjos has the most correct answer and using the "Continuous Testing" addin you can get Visual Studio to run the Moles runner through the NUnit console runner with this batch file:
Just update the paths to your version of the software packages. This can also be used to run it from other programs if you have the time to update it. |
|||
|
|
|
You can't run MS Moles with NUnit from within Visual Studio. You must either use MSTest (Visual Studio Unit Tests) to do that or you can run your NUnit tests with Moles from the command line.See the reference manual. A possible alternative: If it fits your needs, you may use the Gallio automation platform to run all kinds of test frameworks (in your case NUnit and MSTest) side by side... HTH! Thomas |
|||||||
|