Stories recently tagged with 'UnitTesting' Subscribe to this feed

Nuclex Framework on CodePlex (www.nuclex.org)

published 4 months, 17 days ago, submitted by CygonCygon(125) 4 months, 19 days ago

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 using LZMA (7-Zip), graphical user interfaces with skin support, texture atlas creation, game state management, collision detection, C++' deque ported to C#, debug overlay renderer, automatic vertex declaration creator, game state management and more, all organized into neatly isolated building blocks you can pick from. The code has more than 1,400 unit tests with some assemblies achieving 100.0% test coverage and is thoroughly and completely documented. read more...

1 comment | category: | Views: 220

tags: another

ReSharper Discount & Extended Trial (web2asp.net)

published 4 months, 19 days ago, submitted by sedgeysedgey(955) 4 months, 19 days ago

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 read more...

4 comments | category: | Views: 397

tags: another

Unit testing WCF services through dependency injection (www.toomuchcode.com)

submitted by JemmJemm(9400) 8 months, 22 days ago

"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 some case we may even want to inject some in-process instances of these other services." read more...

add a comment | category: | Views: 44

tags: another

Unit Testing Silverlight Animation (compiledexperience.com)

submitted by NigelSampsonNigelSampson(270) 10 months, 28 days ago

Examples in unit testing a Silverlight animation framework using the Silverlight unit test system. read more...

add a comment | category: | Views: 13

tags: another

How to Compare / Test the Equality of two Queries in SQL Server (blog.troyd.net)

published 1 year, 2 months ago, submitted by powerrushpowerrush(3754) 1 year, 3 months ago

Compare / Test the Equality of two Queries in SQL Server using this short T-SQL read more...

1 comment | category: | Views: 361

tags: another

What's an Auto Mocking Container? (mikehadlow.blogspot.com)

submitted by powerrushpowerrush(3754) 1 year, 5 months ago

...it's a really neat tool if you're writing a lot of unit tests and find yourself forever constructing mock objects read more...

add a comment | category: | Views: 32

tags: another

Test Driven Development Tips: Getting Value out of Code Coverage (stupiddumbguy.blogspot.com)

submitted by bbcookbbcook(315) 1 year, 8 months ago

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. read more...

add a comment | category: | Views: 45

tags: another

Unit Testing and Code Coverage - A Powerful Duo (thevalerios.net)

submitted by mattman206mattman206(305) 1 year, 8 months ago

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. read more...

add a comment | category: | Views: 43

tags: another

unit testing your events (www.dotnettoad.com)

published 1 year, 9 months ago, submitted by PaklPakl(120) 1 year, 9 months ago

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 the second one uses .NET 3.0 (anonymous methods) in order to minimize the code necessary. read more...

add a comment | category: | Views: 75

tags: another

Host your own Web Server in your app using IIS7 Hostable Web Core (blogs.iis.net)

submitted by JemmJemm(9400) 1 year, 9 months ago

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. read more...

add a comment | category: | Views: 40

tags: another

TDD: The Road so Far (blog.wekeroad.com)

published 1 year, 9 months ago, submitted by usshermussherm(5255) 1 year, 9 months ago

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. read more...

add a comment | category: | Views: 23

tags: another

Unit Testing with Silverlight - the FULL article. (www.jeff.wilcox.name)

published 1 year, 10 months ago, submitted by powerrushpowerrush(3754) 1 year, 10 months ago

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. read more...

add a comment | category: | Views: 13

tags: another

ScottGu: Unit Testing with Silverlight (weblogs.asp.net)

published 1 year, 10 months ago, submitted by JemmJemm(9400) 1 year, 10 months ago

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. read more...

4 comments | category: | Views: 10

tags: another

Moq: Why do we need yet another NET mocking framework? (www.clariusconsulting.net)

published 1 year, 10 months ago, submitted by powerrushpowerrush(3754) 1 year, 10 months ago

"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 community, the typical record/replay model is alien to developers and introduces yet another new concept that makes the learning curve steeper than needed. " read more...

add a comment | category: | Views: 52

tags: another

Simplified Asp.net MVC Controller Testing with Moq (www.codethinked.com)

published 1 year, 10 months ago, submitted by justin_etheredgejustin_etheredge(8055) 1 year, 10 months ago

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). read more...

add a comment | category: | Views: 369

tags: another

When TDD goes bad (gojko.net)

published 1 year, 11 months ago, submitted by gojkogojko(1110) 1 year, 11 months ago

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 things that Ian identified as symptoms that TDD has gone bad in a project, along with my comments... read more...

add a comment | category: | Views: 26

tags: another