Testing

Using Fiddler to help in Manual Testing Members Public

Fiddler is an HTTP debugging proxy server application, that captures HTTP and HTTPS traffic and displays to the user. It also enables modifying HTTP traffic when sent or received. Fiddler is one of the tools that I use daily and is an indispensable one for any web developer. This post

Rahul Pulikkot Nath
Rahul Pulikkot Nath
Testing

Organizing Tests into Test Suites for Visual Studio Members Public

While working with large code base, that has a lot of tests (unit, integration, acceptance etc), running all of them every time we make a small change (if you are doing TDD or just using build for feedback) takes a lot of time. Organizing tests into different test suites, making

Rahul Pulikkot Nath
Rahul Pulikkot Nath
Testing

Is Code Coverage a Lie? Members Public

This post reflects on how code coverage is seen today in the industry and on how it should actually be seen and interpreted so as to produce better and stable code.

Rahul Pulikkot Nath
Rahul Pulikkot Nath
Testing

Testing Multiple Implementations of same Interface Members Public

Often there are times when we need to test multiple implementations of the same interface. We would want to use the same test case against all the implementations so that we don't repeat ourselves. In this post we will see how we can reuse the same test cases

Rahul Pulikkot Nath
Rahul Pulikkot Nath
Dotnet

TDD and Refactoring Members Public

Over the days I have been reading on Test Driven Development(TDD) and it seems really interesting methodology to go with as per development is concerned. Basic of TDD is that the development process relies on 'tests', that are written prior to code. Sounds astonishing!!!! It might to

Rahul Pulikkot Nath
Rahul Pulikkot Nath
Refactoring