By tag: UnitTesting
0
kicks
Unit Testing Html Helpers for ASP.NET MVC
How to write unit tests for HTML helpers (which might use HttpContext or ViewContext) without needing a mocking framework.
0
kicks
Nuclex Framework on CodePlex
Nuclex.org has finally published their Nuclex Framework, a library of advanced building blocks for XNA game programming, as Open Source on CodePlex!
Just some of the features: 3D Vector font rendering, multi-threaded particle system simulation, 3D SpriteBatch replacement, content compression usin...
0
kicks
ReSharper Discount & Extended Trial
I have had a few emails recently asking if I am still able to obtain the 10% discount coupons and 60 day extended trial for ReSharper
0
kicks
Unit testing WCF services through dependency injection
"When building a WCF service in an enterprise application, this service frequently depends on other services or resources. When creating unit tests for this service, we don’t want to host all these other services over WCF endpoints. Instead we will most likely want to inject mock objects. In so...
0
kicks
Unit Testing Silverlight Animation
Examples in unit testing a Silverlight animation framework using the Silverlight unit test system.
0
kicks
How to Compare / Test the Equality of two Queries in SQL Server
Compare / Test the Equality of two Queries in SQL Server using this short T-SQL
0
kicks
What's an Auto Mocking Container?
...it's a really neat tool if you're writing a lot of unit tests and find yourself forever constructing mock objects
0
kicks
Test Driven Development Tips: Getting Value out of Code Coverage
Lies, True lies and Statistics -- Coverage tools can be misleading. So how does an organization benefit from having them? Bryan provides some great field notes on do's and don'ts for code coverage, including how tests can ruin coverage.
0
kicks
Unit Testing and Code Coverage - A Powerful Duo
Unit testing (using NUnit) and code coverage (using NCoverExplorer) make an amazing combination to not only run unit tests, but see how well your tests execute your code. All of this is made even easier by the TestDriven.net Add-in for Visual Studio.
0
kicks
unit testing your events
In this article I will show you how you can unit test your events. I will show you a simple technique that will enable you to test if your events fire exactly as often as you want them to and I will provide you with two implementations. One implementation works well with the .NET Framework 2.0 and t...
0
kicks
Host your own Web Server in your app using IIS7 Hostable Web Core
IIS 7.0 includes a very cool feature that is not so well known called Hostable WebCore (HWC). This feature basically allows you to host the entire IIS functionality within your own process.
0
kicks
TDD: The Road so Far
Rob talks about traveling the TDD road, shares a few lessons learned, and points out a couple of pros and cons he's discovered along the way.
0
kicks
Unit Testing with Silverlight - the FULL article.
This is the article that ScottGu points to in http://www.dotnetkicks.com/silverlight/ScottGu_Unit_Testing_with_Silverlight , even thought it has more meat than Scott's article.
0
kicks
ScottGu: Unit Testing with Silverlight
One of the important capabilities we shipped with the Beta1 release of Silverlight 2 was a unit test harness that enables you to perform both API-level and UI-level unit testing. This testing harness is cross browser and cross platform, and can be used to quickly run and verify automated unit tests...
0
kicks
Moq: Why do we need yet another NET mocking framework?
"I've already argued in the past why I think forcing regular developers to learn and understand the difference between a stub, a fake, a "true" mock and a dynamic mock is unproductive and largely irrelevant for their TDD needs.
Also, even though quite common in the mocking communit...