By tag: UnitTesting
0
kicks
Simplified Asp.net MVC Controller Testing with Moq
Want to learn how to better unit test your controllers in Asp.net MVC? In this example I go through the process of testing a controller action in asp.net MVC using Moq (but it could be easily translated into another mocking framework).
0
kicks
When TDD goes bad
Last week, at the London .NET User Group meeting, Ian Cooper talked about Test-driven development, focusing on both good and bad practices. I’m a big fan of learning from anti-patterns and mistakes of other people, so the second part of his session was very interesting to me. Here is a short list of...
0
kicks
TDD or POUT
Because Unit Testing is the plain-Jane progenitor of Test Driven Development, it's kind of unfair that it doesn't have an acronym of its own. After all, it's hard to get programmer types to pay attention if they don't have some obscure jargon to bandy about. UT is too awkward, besides being a state...
0
kicks
Test Supported Development (TSD) is not Test Driven Development (TDD)
"Test Supported Development" (TSD) intends to characterize the creation of tests during ANY/ALL stages of development, that is, tests are not necessarily created before their respective System Under Test (SUT), but not necessarily created as an afterthought, either...
0
kicks
Tell Me Your Unit Testing Pains
... Unfortunately, by most definitions of Unit Test, most of these tests are really integration tests.
0
kicks
TDD Proven Effective! Or is it?
So when Phil Haack announced that Research Supports the Effectiveness of TDD I was more than a little interested in seeing what the linked report actually contained.
0
kicks
Getting Started with Test Driven Development
"Few days ago I started a poll on www.KoffeeKoder.com where I asked which tool do you use for testing your applications. Surprisingly, most of the people are not using any tool for testing. This means that there are more and more applications being developed which are destined to be failed. In ...
0
kicks
MVC/MVP Framework for WPF
Rob Eisenberg introduces MVP framework he's been developing for WPF (source code included).
0
kicks
Why Use Continuous Integration - Beginner's Overview
Good conceptual overview of why to use Continuous Integration. As a person that didn't understand much at all about it. This article sense me down the right direction of understanding.
0
kicks
Mocking out the IHttpContext to test your routing rules
How to unit test routing rules in the ASP.NET MVC framework.
0
kicks
Launch NUnit Tests directly from Visual Studio and Debug
Short guide how to launch NUnit tests directly from Visual Studio and using debugger while tests run.
0
kicks
Test-Driven Development for Embedded Software
Despite a prevalent industry perception to the contrary, the agile practices of Test-Driven Development and Continuous Integration can be successfully applied to embedded software. We present here a holistic set of practices, platform independent tools, and a new design pattern (Model Conductor Hard...
0
kicks
Including unit tests in project release
It struck me as a great idea to include NUnit test in the next release of my SQLite query browser. If the program crashes or misbehaves, users can run the tests, find out why and either report to me or fix it themselves.