-
Recent Posts
Recent Comments
- common on JavaScript Closures Explained
- Stingbat on JavaScript Closures Explained
- derekgreer on Effective Tests: A Test-First Example – Part 3
- Geoff Mazeroff on Effective Tests: A Test-First Example – Part 3
- Rithish on RabbitMQ for Windows: Introduction
Archives
- May 2012
- April 2012
- March 2012
- February 2012
- December 2011
- October 2011
- September 2011
- July 2011
- June 2011
- May 2011
- April 2011
- March 2011
- October 2010
- July 2010
- June 2010
- April 2010
- March 2010
- February 2010
- January 2010
- October 2009
- June 2009
- May 2009
- March 2009
- December 2008
- November 2008
- October 2008
- June 2008
- January 2008
- August 2007
- June 2007
- January 2006
- October 2005
Tags
acceptance testing Acronyms Arrow ASP.NET MVC Assembly Resolution Auto-mocking Containers BDD C# Closures Composite Application Development Convention over Configuration Custom Assertions Cygwin Dependency Injection Dependency Inversion Principle Design Patterns ECMAScript Expected Object Pattern ExtensionMethods Git JavaScript Law of Demeter Machine.Specifications Managed Extensibility Framework Model-View-Controller Model-View-Presenter NHibernate NuGet Object-Oriented Design Presentation-Abstracton-Control RabbitMQ Resharper TDD Test Doubles Testing Ubiquitous Language UnityMeta
Author Archives:
Acronyms and Ubiquitous Language
Acronyms are often employed within organizations as a way to abbreviate frequently used phrases in an attempt to expedite communication. Unfortunately, their use often does the exact opposite. Many programming language style guides discourage the use of acronyms. For instance, … Continue reading
How To Produce Bug-Free Software
Many are resigned to the fact that all software is destined to contain some “bugs”, but did you know it’s possible (and arguably pretty easy) to always produce “bug-free” software? In this article, I’ll explain how. Terms To begin, let’s … Continue reading
Dependency Management in .Net: install2
Inspired by Rob Reynolds’ awesome post on extending NuGet’s command line, I decided to create my own extension for facilitating application-level, build-time retrieval of external dependencies along with all transitive dependencies. I struggled a bit with what to call the … Continue reading
Posted in Uncategorized
8 Comments
Dependency Management in .Net: Get
[Update: This article refers to a tool which will no longer be maintained. Until such time as NuGet is updated to naively support these capabilities, consider using the plug-in described here.] In my last article, I demonstrated how my team … Continue reading
Dependency Management in .Net: Using NuGet without Visual Studio
In my last article, I discussed some of my previous experiences with dependency management solutions and set forth some primary objectives I believe a dependency management tool should facilitate. In this article, I’ll show how I’m currently leveraging NuGet’s command … Continue reading
Dependency Management in .Net
I started my career as a programmer developing on Unix platforms, primarily writing applications in ANSI C and C++. Due to a number of factors, including the platform dependency of C/C++ libraries, the low-level nature of the language and the … Continue reading
Effective Tests: Acceptance Tests
In the last installment of our series, we discussed the topic of Context Obscurity along with strategies for avoiding the creation of obscure tests. As the final topic of this series, we’ll take an introductory look at the practice of … Continue reading
Effective Tests: Avoiding Context Obscurity
In the last installment of our series, we looked at the Expected Object pattern as a way to reduce code duplication, eliminate the need to add test-specific equality concerns to production code and to aid in clarifying the intent of … Continue reading
Introducing the Expected Objects Library
Introduced in the Effective Test Series, the Expected Object pattern is a technique involving the encapsulation of test-specific logic within a specialized type designed to compare its configured state against that of another object. Use of the Expected Object pattern … Continue reading
Effective Tests: Expected Objects
In the last installment of the Effective Tests series, the topic of Custom Assertions was presented as a strategy for helping to clarify the intent of our tests. This time we’ll take a look at another test pattern for improving … Continue reading
