subscribe to forums Subscribe to the forum

CruiseControl.net results not correct
by: vertebrate
September 5, 2008, 5:59 am
Mockin DevExpress.XPCollection<CustomType>
by: doron
September 5, 2008, 2:57 am
Not able to mock a COM server
by: doron
September 5, 2008, 2:53 am
Unexpected problem in having property in recording statement
by: eli
September 4, 2008, 12:14 pm
Mock abitrary item in a list
by: tillig
September 4, 2008, 8:59 am
Mock an non existing item in a list.
by: nsoonhui
September 2, 2008, 6:18 pm
Difference between MockObject.Object and Mock.MockedInstance
by: gilz
September 2, 2008, 1:18 am
Compact framework?
by: gilz
September 2, 2008, 12:51 am
Unexpected exception in mocking inherited form.
by: nsoonhui
August 30, 2008, 11:20 pm
Older Version of TypeMock in VS2008
by: lior
August 30, 2008, 10:39 pm
Alternate to mocking database calls?
by: gilz
August 30, 2008, 10:26 pm
Garbage in My Documents
by: lior
August 30, 2008, 11:09 am
Typemock integration with custom VS2005 addin
by: gilz
August 29, 2008, 4:19 am
How do you ensure other methods are not called?
by: gilz
August 29, 2008, 4:17 am
Problem with Return when creating the object on the fly
by: lior
August 28, 2008, 10:23 am
Cast of a Mocked object to an Interface fails.
by: gilz
August 28, 2008, 4:56 am
Understanding Isolate, Verify, ClearAll
by: gilz
August 27, 2008, 11:35 pm
Problem with overloads [evaluating]
by: gilz
August 27, 2008, 10:50 pm
Evaluation Questions
by: gilz
August 25, 2008, 11:14 pm
Natural Mocking an object with a private constructor
by: ohad
August 22, 2008, 9:59 pm
HttpModule Testing
by: ohad
August 22, 2008, 8:51 am
StackOverflowException in MockManager.Init()
by: gilz
August 21, 2008, 4:05 am
Maintenance has expired - MSBuild Task Fails
by: gilz
August 21, 2008, 3:47 am
 
Community>Enter Forums Here

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

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.


  • 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

<TMockRunner>
  <nunitPath>nunit-console.exe</nunitPath>
  <runnerPath>tmockRunner.exe</runnerPath>
  <assemblies
    <assembly>bik.functionalTests\bin\debug\bik.unittests.dll</assembly>
  </assemblies>
</TMockRunner>

  • Console application
Developer: Paul Marsh
Description: N/A
Downloads: ConsoleApplicationTypeMock.zip
  Click here to view usage notes / sample code

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

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

[TestMethod]
public void SwapStatic_CallsFake()
{
 Swap.StaticCalls<OriginalClass, FakeClass>();
 Assert.AreEqual(2, OriginalClass.StaticReturnOne());
 Swap.Rollback();
}


Follow this link for more information.