By tag: TypeMock
0
kicks
Unit Testing Entity Framework Video
Video on examples for unit testing EF apps. Entity framework has been considered hard to test, This video shows how to do it easily with Typemock Isolator. You can download the presentation and code and try it for yourselves.
0
kicks
Introducing Entity Framework Unit Testing with TypeMock Isolator
One of the challenging things with current version of Entity Framework, its leakage of testability. Which means when you build an application or module (e.g. Repositories) that depends on entity framework, it will be very hard to unit test your code isolated from Entity Framework. This might lead to...
0
kicks
Integrating TypeMock with ASP .NET Unit tests
Ivonna let's you write ASP .NET Unit tests in conjunction with TypeMock
0
kicks
Deploy, test and pack your code - Part 2 Using MsBuild
In part one of this packing series I have shown, how you can automate your build process, test and optionally mock by using the popular .net deployment tool NAnt. If you don't know what I am talking about and just landed here by help of search engine. Let me put the link below again.
http://weblo...
0
kicks
Deploy, test and pack your code - Part 1 Using NAnt
this part, I show a way to build and deploy your project using NAnt. As, you already might know that NAnt is a tiny deployment tool that enables you to create a deployment package with some *.build files which contains nothing but few XML directives.
...
0
kicks
Mock HTTP layer to do complex tasks like uploading photo to Flickr
In this post, I will show how you can use Typemock to fake out complex HTTP POST like uploading photo in Flickr server. The example which will be shown here, gives a pretty much generic idea of faking out HTTP calls and gain access to the response stream for comparing result with original content.I ...
0
kicks
Mocking static methods with Typemock
There are mocking tools like Rhino Mock, Moq, NMock, Typemock and many more. Recently, I was kinda evaluating mocking tools to mock out REST calls in Linq.Flickr. Almost all of the mock tools requires some sort of interface reference to work on. When, to mock out methods like XElement.Load or File.O...
0
kicks
TDD/Using Mock objects with CSLA.Net
Implementation of the Unit Testing on CSLA v2.1 using TypeMock dynamic mocking library.