Typemock Add-ons
Typemock community members have developed add-ons that can enrich your experience with the product. You are welcome to use them and add your own.
- IVONNA - Unit testing ASP.NET has never been easier
Developer: sm-art.biz - Artem Smirnov
Description:This Asp.NET testing tool allows writing unit tests for WebForms applications.
Downloads: Ivonna (beta)
Click here to view usage notes / sample code Description:This Asp.NET testing tool allows writing unit tests for WebForms applications.
Downloads: Ivonna (beta)
Ivonna runs in the same process as the test runner.
Unlike other testing tools, Ivonna is not a "client-side" tool. It doesn't just test the HTML output (although such a possibility exists), it creates and runs an Asp.NET request and allows you to examine the intrinsic objects, such as the Page object.
Unlike other testing tools, Ivonna is not a "client-side" tool. It doesn't just test the HTML output (although such a possibility exists), it creates and runs an Asp.NET request and allows you to examine the intrinsic objects, such as the Page object.
- CCnet Integration
Developer: Prooks Alexander
Description: Enable NUnit testing via TmockRunner in CruiseControl .Net.
Downloads: CruiseControl.zip
Click here to view usage notes / sample code
Description: Enable NUnit testing via TmockRunner in CruiseControl .Net.
Downloads: CruiseControl.zip
<TMockRunner>
<nunitPath>nunit-console.exe</nunitPath>
<runnerPath>tmockRunner.exe</runnerPath>
<assemblies
<assembly>bik.functionalTests\bin\debug\bik.unittests.dll</assembly>
</assemblies>
</TMockRunner>
<nunitPath>nunit-console.exe</nunitPath>
<runnerPath>tmockRunner.exe</runnerPath>
<assemblies
<assembly>bik.functionalTests\bin\debug\bik.unittests.dll</assembly>
</assemblies>
</TMockRunner>
- Console application
N/A
- Template
Developer: Travis Illig
Description:Drop the template into your Snippet Compiler templates folder and add references to NUnit and TypeMock.
Downloads: TypeMockSnippetTemplate.zip
Click here to view usage notes / sample code
Description:Drop the template into your Snippet Compiler templates folder and add references to NUnit and TypeMock.
Downloads: TypeMockSnippetTemplate.zip
Use this template to make TypeMock experimentation easier. A basic console app that will launch a separate process with TypeMock enabled and run the NUnit console test runner. The template starts out with an empty class and an empty test fixture, ready to populate with tests. When you run the app, the NUnit console runner will execute any test fixtures you put in the current assembly.
- Ruby style
Developer: Eli Lopian
Description:A ruby style simple "Swapping" effect between classes.
Downloads: RubyStyleMocking.zip
Click here to view usage notes / sample code Description:A ruby style simple "Swapping" effect between classes.
Downloads: RubyStyleMocking.zip
[TestMethod]
public void SwapStatic_CallsFake()
{
Swap.StaticCalls<OriginalClass, FakeClass>();
Assert.AreEqual(2, OriginalClass.StaticReturnOne());
Swap.Rollback();
}
Follow this link for more information.


