The "Testable Object" Pattern
This blog post illustrates a unit testing technique of creating testable versions of difficult to test classes.
Redmond, WA, Vereinigte Staaten von Amerika
Some people spend their lives trying to figure out what they're meant to do. At the age of 4, my mom took me to her work and showed me the then room-sized computer systems, and I said "That's what I'm going to do."
I've been writing code since I was about 9 years old, and there's a surprising amount left to learn 30 years later. I've worked in places small enough to be the only developer, and big enough that everybody has heard of them, and lots of stuff in-between. I'm happiest when I am involved in the full development cycle: design, implementation, shipping, and support. I've learned that the people and the problems are more interesting than the technology, and nothing is quite as satisfying as knowing you helped someone do or be better with your code.
Oktober 2012 - Aktuell
Tier 3 is a late-stage start-up company with approximately 50 employees. The engineering team includes 15 developers and testers, mostly senior-level developers with extensive industry experience. The code base is primarily C#, targeting ASP.NET MVC and Web API.
As a principal software developer, my responsibilities include design, development, and deployment of the Tier 3 enterprise cloud platform. This includes design for the Tier 3 Foundation system as well as driving with a transition from traditional SQL storage to a distributed document store with indexing engine.
2007 - Aktuell
xUnit.net is an open source project founded by myself and James Newkirk, the original author of NUnit 2.0. It is developer testing framework, built to support Test Driven Development, with a design goal of extreme simplicity and alignment with framework features. It is compatible with .NET Framework 2.0 and later, and offers several runners: console, GUI, MSBuild, and Visual Studio integration via TestDriven.net, CodeRush Test Runner and Resharper. It also offers test project integration for ASP.NET MVC.
März 2005 - September 2012
As a principal developer on the ASP.NET MVC and Web API team, my primary responsibilities included:
I have also worked on the Patterns and Practices team and the CodePlex team while at Microsoft.
2002 - 2004
OneVoyce was a small startup company, based out of Colorado. As the CTO, I was responsible for driving the design and implementation of the primary product, a web-based marketing automation application called MarketVoyce. Using ASP.NET 1.1 and SQL Server 2000, the application utilized many advanced techniques to enable rapid application development and deployment, including a home-grown Object-Relational mapper with lazy loading support, a data warehouse for reporting, and a dynamic presentation layer based on context-aware data objects and display factories.
1999 - 2001
Mobilize was a mid-sized startup (approximately 120 employees). As Chief Technologist, it was my responsibility to oversee many of the technical decisions about the primary product, which was a platform for document delivery for field sales & support workers. Built on top of C++ and ASP, this allowed development of web applications that could be run in a disconnected environment, including offline database support and online transaction reconciliation. It supported a variety of devices (laptops, phones, and PDAs).
In addition to software architecture and development duties, I also developed and taught classes on COM, DCOM, and ATL to newly hired engineers.
1995 - 1999
I was the sole software engineer at a software marketing organization whose primary product was World Watch, a world timepiece application with screen saver. The application was customized and sold to companies, who distributed it for free as a marketing tool for their own products. This job also included several custom one-off marketing software applications.
1994 - 1995
General Inspection is a small company specializing in the manufacture and sale of gauging and sorting machines, sold primarily to the automotive and mechanical manufacturing industries. As the sole software developer, I worked on a unique gauging machine which combined laser measurement and computational power to measure complex parts at a rate of up to 100/minute. It was capable not only of measuring gross elements like length and circumference, but effectively created a "picture" of the part as it slid through a laser, thereby capable of measuring things like thread pitch and exact camshaft placement.
1993 - 1994
FTP Software was a world-leading provider of TCP/IP solutions for PCs running MS-DOS and Windows 3.x. At FTP, I was responsible for designing and implementing the serial-mode drivers (for SLIP and PPP) for Windows 3.x and the associated GUI dialer application. This included code written for the protected mode Windows kernel (written as a VxD in mixed C and x86 assembler), including bridging between read-mode and protected-model TCP/IP kernels.
CodePlex, Mrz 2012 - Mai 2012; 1825 Follower; 214mal geforkt
This is the source code repository for open source ASP.NET products. The products include MVC, Web API and Web Pages with Razor.
CodePlex, Sep 2007 - Mrz 2011; 613 Follower; 28mal geforkt
A unit testing framework for C# and .NET. Written by original inventor of NUnit. xUnit.net is the top rated framework for unit testing C# code.
CodePlex, ; 2737 Follower; 11mal geforkt
This project gives you access to the code for upcoming releases that the ASP.NET team is working on, starting with the ASP.NET MVC Framework.
CodePlex, Mai 2007 - Dez 2007; 27 Follower; 14mal geforkt
Command line source control client for accessing CodePlex source control servers
CodePlex, Jul 2006 - Jan 2008; 31 Follower
ObjectBuilder is a tool for building dependency injection systems for the .NET platform. It was originally designed by the Microsoft patterns & practices team for use in the Composite UI Application Block and Enterprise Library. ObjectBuilder can be used to create a variety of dependency injection environments. It can be used to create any arbitrary object. It requires .NET 2.0.
GitHub, Jun 2012; 46 Follower; 13mal geforkt
Sample code for the Webstack of Love presentation
This blog post illustrates a unit testing technique of creating testable versions of difficult to test classes.
The word “test” in software is a very loaded term. The first time I came across a tester (as in, a person performing the quality assurance role) was in my first professional job.…
I ran into a very strange problem tonight. Here's my scenario: I have a value which comes in as a string (from a URL parameter) I need to convert this string into a Nullable…
On the .NET Framework, when we call GetType() on an object (or use the typeof operator), the documentation says it returns a Type. What most people don’t realize is that the Type…
This is part 1 in a series on using Task Parallel Library when writing server applications, especially ASP.NET MVC and ASP.NET Web API applications.
This is a blog series about service location capabilities and support for dependency injection in ASP.NET MVC 3.
This is a blog series on the Display and Editor Templates features introduced in ASP.NET MVC 2.

Improving the Design of Existing Code
Martin Fowler, Kent Beck, John Brant, William Opdyke, Don Roberts

Elements of Reusable Object-Oriented Software
Erich Gamma, Richard Helm, Ralph Johnson, John M. Vlissides