Browse by Tags

All Tags » TypeMock (RSS)

Typemock Racer Alpha Is Out

Typemock has released an alpha version of its newest product: Typemock Racer . Typemock Racer is the tool that uses dynamic and static analysis to find deadlocks in .NET code that had been previously announced by Roy Osherove .
Posted by Paulo Morgado | with no comments
Filed under: , , , ,

Typemock Isolator 5.0 Is Out With Its New AAA API

Typemock has released version 5.0 of its unit testing tool: Isolator . Check out the release notes . This new version comes with a new API: A rrange A ct A ssert: Isolator AAA API - The Basics Isolator AAA: Creating Fakes I’ll have to say that I liked...

Isolator 4.3 Released!

Today Typemock released version 4.3 of Typemock Isolator . Download it from here . What’s new? Support for Ivonna . For those of you who develop ASP.Net applications, Ivonna is a great tool, built on top of Isolator’s platform, to simplify writing tests...
Posted by Paulo Morgado | with no comments

Why Use Random Values For Unit Testing

On a previous post I introduced a library for generating random values for purposes of unit testing. I received a few comments and questions on my blogs [ ^ ][ ^ ][ ^ ][ ^ ]. Simon says that he’d “generally want every instance of the test I run to be...

Using Random Values For Unit Testing

When writing my unit tests I don’t like to use hard coded fixed values because I either end up using the same values or, because of that, tests may succeed by coincidence. Over time, I have developed an helper class to generate random values for testing...

Typemock Developers Community Site Updated

Typemock has updated its Developers Community Site with new sections. Besides the forums , there's a new add-ons page where anyone can share her/his tools or snippets (I guess I'll have to brush up my Typemock Snippets For Visual Studio to add...

Typemock Isolator v4.2.4 Released

Typemock released version 4.2.4 of its Isolator mock framework . You can check out the release notes in The Typemock Insider blog and download it from the Typemock Isolator Download page .
Posted by Paulo Morgado | with no comments

Upcoming Typemock Webcast on March 12

Typemock is having a special Webcast on Wednesday March 12, 16:00 GMT The live demo will include: The Support of the new .NET 3.5 framework and specifically how to mock LINQ statements. The improved IDE based on using colors to emphasize mocked methods...

TypeMock Isolator 4.2 Released

TypeMock has released version 4.2 of its mocking framework: TypeMock Insulator. Check out the release notes . My four favorite new features in this release are: Improved mock chaining Debugger evaluation doesn't change the test behavior The debugger...

Typemock Insulator Is Typemock Isolator

Yesterday I made a mistake with the name of the next version of TypeMock . The real name is TypeMock Isolator. Whatever the name is, you should try it out.

TypeMock Insulator 4.2 Beta Publicly Available

TypeMock (now called) Insulator 4.2 Beta is publicly available. Check out the release notes . One of my favorite new features is the improved mock chaining. Take this class to be tested: public class TestedClass1 { public IDictionary < string , object...

TypeMock: How to Make Reflective Mocks More Natural

Like I said before , this as been on the back of my mind for a while. A while back I introduced a way to get the MethodInfo of a method in a strongly typed way using LINQ , and that's how I'm going to make Reflective Mocks more Natural . Well...

TypeMock: Making Reflective Mocks More Natural

I've been thinking about this for a while. Seems like someone beat me to it.

TypeMock Basic Introduction Screencast at Facebook

Roy Osherove done a nice introductory 10 minute screencast that shows some basic features in TypeMock .
Posted by Paulo Morgado | with no comments

TypeMock Snippets For Visual Studio

I've just created a set of code snippets for Visual Studio for my most used features of TypeMock . Feel free to use it.

Stop Designing for Testability (by Eli Lopian)

Eli Lopian from TypeMock™ , has an article on CodeProject about the disadvantages of design for testability and how to use TypeMock™ to remove these disadvantages while keep the advantages of unit testing. I have to say that I agree with Eli: design for...

Unit Test Patterns for .NET (from TypeMock™)

There is a good set of articles about Unit Test Patterns in the TypeMock™ site: Unit-Test Patterns for .NET - Part I This article looks at patterns in unit testing and describes the main patterns found in tested .NET code. It also describes the problems...

TypeMock 4.1 has been released.

The main features of this version are: Support of .NET 3.5 syntax changes Mocking automatic properties. Mocking Anonymous Types. Mocking Lambda Expressions. Verifying New Initialziers. Mocking Extension Methods. Mocking LINQ statements. Integration API...
Posted by Paulo Morgado | with no comments

TypeMock.NET Version 3.7.0 is now available

TypeMock announced that Version 3.7.0 of Type.NET is now available. A few of the new features included in this release are: You can now mock mscorlib interfaces. Enterprise Edition only Vista support is now complete. You can fire Multiple instances of...

Unit Testing and Mock Frameworks

I'm not a big fan of Test Driven Development (TDD) , but I love Unit Testing . But to be productive on unit testing I need a good framework for Mock Objects . I can't expect to be productive and have to build a lot of mock classes to test other...