User Alan Ridlehoover - Stack Overflowmost recent 30 from stackoverflow.com2009-12-18T06:45:16Zhttp://stackoverflow.com/feeds/user/19317http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/178997/what-would-you-do-when-you-are-about-to-add-some-new-features-to-a-large-and-dir/186050#1860502Answer by Alan Ridlehoover for What would you do when you are about to add some new features to a large (and dirty) codebase which has virtually *NO* unit-testing code?Alan Ridlehoover2008-10-09T05:53:01Z2008-10-09T05:53:01Z<p>Fowler also suggests that you never refactor without the safety of tests. But, how do you get those tests in place? And, how far do you go?</p>
<p>The previously recommended book (<a href="http://rads.stackoverflow.com/amzn/click/0131177052" rel="nofollow">Working Effectively with Legacy Code</a> by Michael Feathers) is the definitive work on the subject.</p>
<p>Need a quicker read? Take a look at Michael's earlier <a href="http://www.objectmentor.com/resources/articles/WorkingEffectivelyWithLegacyCode.pdf" rel="nofollow">article (PDF)</a> of the same name.</p>
http://stackoverflow.com/questions/174498/what-is-the-equivalent-to-junit-in-c/176147#1761472Answer by Alan Ridlehoover for What is the equivalent to JUnit in C#?Alan Ridlehoover2008-10-06T20:54:20Z2008-10-06T20:54:20Z<p>Regarding your question about unit test frameworks:</p>
<p><a href="http://nunit.org/index.php" rel="nofollow">NUnit</a> 1.0 was a direct port of JUnit. NUnit 2.0 moved away from JUnit syntax in order to take advantage of the .NET platform. <a href="http://www.codeplex.com/xunit" rel="nofollow">xUnit.net</a> is a newer unit test framework (from Jim Newkirk - one of the NUnit 2.0 developers - and Brad Wilson) that states as a goal exposing "advances in other unit test library implementations that have not really surfaced in .NET," which I read as "keeping up with JUnit."</p>
http://stackoverflow.com/questions/129283/mvc-model-design-inheritance/131599#1315990Answer by Alan Ridlehoover for MVC model design / inheritanceAlan Ridlehoover2008-09-25T05:28:29Z2008-09-25T05:28:29Z<p>The <a href="http://www.objectmentor.com/resources/articles/srp.pdf" rel="nofollow">Single Responsibility Principle</a> (PDF) states that: </p>
<blockquote>
<p>THERE SHOULD NEVER BE MORE THAN ONE REASON FOR A CLASS TO CHANGE. </p>
</blockquote>
<p>Your Archive class violates this principle by handling multiple different types of archives. For example, if you need to update the video archive, you are also modifying the class that handles book and audio archives. </p>
<p>The appropriate way to handle this is to create separate classes for each different type of archive. These types should implement a common interface (or inherit a common base class) so that they can be treated interchangeably (polymorphically) by code that only cares about Archives, not specific archive types.</p>
<p>Once you have that class hierarchy in place, you just need a single controller and view for each model class. </p>
<p>For bonus points, the Single Responsibility Principle can even justify using a factory method or abstract factory for creating your model, view and controller objects (rather than new-ing them up inline). After all, creating an object and using that object are different responsibilities, which might need to be changed for different reasons.</p>
http://stackoverflow.com/questions/124210/best-practices-of-test-driven-development-using-c-and-rhinomocks/125572#12557220Answer by Alan Ridlehoover for Best Practices of Test Driven Development Using C# and RhinoMocksAlan Ridlehoover2008-09-24T05:32:30Z2008-09-24T05:32:30Z<p>Definitely a good list. Here are a few thoughts on it:</p>
<blockquote>
<p><strong>Write the test first, then the code.</strong></p>
</blockquote>
<p>I agree, at a high level. But, I'd be more specific: "Write a test first, then write <em>just enough</em> code to pass the test, and repeat." Otherwise, I'd be afraid that my unit tests would look more like integration or acceptance tests.</p>
<blockquote>
<p><strong>Design classes using dependency injection.</strong></p>
</blockquote>
<p>Agreed. When an object creates its own dependencies, you have no control over them. Inversion of Control / Dependency Injection gives you that control, allowing you to isolate the object under test with mocks/stubs/etc. This is how you test objects in isolation.</p>
<blockquote>
<p><strong>Separate UI code from its behavior using Model-View-Controller or Model-View-Presenter.</strong></p>
</blockquote>
<p>Agreed. Note that even the presenter/controller can be tested using DI/IoC, by handing it a stubbed/mocked view and model. Check out <a href="http://www.atomicobject.com/pages/Presenter+First" rel="nofollow">Presenter First</a> TDD for more on that.</p>
<blockquote>
<p><strong>Do not write static methods or classes.</strong></p>
</blockquote>
<p>Not sure I agree with this one. It is possible to unit test a static method/class without using mocks. So, perhaps this is one of those Rhino Mock specific rules you mentioned.</p>
<blockquote>
<p><strong>Program off interfaces, not classes.</strong> </p>
</blockquote>
<p>I agree, but for a slightly different reason. Interfaces provide a great deal of flexibility to the software developer - beyond just support for various mock object frameworks. For example, it is not possible to support DI properly without interfaces. </p>
<blockquote>
<p><strong>Isolate external dependencies.</strong> </p>
</blockquote>
<p>Agreed. Hide external dependencies behind your own facade or adapter (as appropriate) with an interface. This will allow you to isolate your software from the external dependency, be it a web service, a queue, a database or something else. This is <em>especially</em> important when your team doesn't control the dependency (a.k.a. external).</p>
<blockquote>
<p><strong>Mark as virtual the methods you intend to mock.</strong> </p>
</blockquote>
<p>That's a limitation of Rhino Mocks. In an environment that prefers hand coded stubs over a mock object framework, that wouldn't be necessary.</p>
<p>And, a couple of new points to consider:</p>
<p><strong>Use creational design patterns.</strong> This will assist with DI, but it also allows you to isolate that code and test it independently of other logic.</p>
<p><strong>Write tests using <a href="http://weblogs.java.net/blog/wwake/archive/2003/12/tools_especiall.html" rel="nofollow">Bill Wake's Arrange/Act/Assert technique</a>.</strong> This technique makes it very clear what configuration is necessary, what is actually being tested, and what is expected.</p>
<p><strong>Don't be afraid to roll your own mocks/stubs.</strong> Often, you'll find that using mock object frameworks makes your tests incredibly hard to read. By rolling your own, you'll have complete control over your mocks/stubs, and you'll be able to keep your tests readable. (Refer back to previous point.)</p>
<p><strong>Avoid the temptation to refactor duplication out of your unit tests into abstract base classes, or setup/teardown methods.</strong> Doing so hides configuration/clean-up code from the developer trying to grok the unit test. In this case, the clarity of each individual test is more important than refactoring out duplication.</p>
<p><strong>Implement Continuous Integration.</strong> Check-in your code on every "green bar." Build your software and run your full suite of unit tests on every check-in. (Sure, this isn't a coding practice, per se; but it is an incredible tool for keeping your software clean and fully integrated.)</p>
http://stackoverflow.com/questions/3305/asp-net-hosting-options/125421#1254213Answer by Alan Ridlehoover for ASP.NET Hosting OptionsAlan Ridlehoover2008-09-24T04:29:31Z2008-09-24T04:29:31Z<p>I'm very happy with DiscountASP.NET. They've been my host for years.</p>
http://stackoverflow.com/questions/122388/how-would-you-implement-mvc-in-a-windowsforms-application/124484#1244841Answer by Alan Ridlehoover for How would you implement MVC in a WindowsForms application?Alan Ridlehoover2008-09-23T23:06:03Z2008-09-23T23:06:03Z<p>According to Microsoft, the UIP Application Block mentioned by @jasonbunting is "archived." Instead, look at the <a href="http://msdn.microsoft.com/en-us/library/aa480450.aspx" rel="nofollow">Smart Client Application Block</a> or the even newer <a href="http://msdn.microsoft.com/en-us/library/aa480482.aspx" rel="nofollow">Smart Client Software Factory</a>, which supports both WinForms and WPF SmartParts.</p>
http://stackoverflow.com/questions/106800/unit-testing-guidelines/107452#1074521Answer by Alan Ridlehoover for Unit Testing GuidelinesAlan Ridlehoover2008-09-20T06:55:54Z2008-09-20T06:55:54Z<p>Josh's answer is right on - just one point of clarification:</p>
<p>The reason I separate unit tests from integration and acceptance tests is speed. I use TDD. I need close to instant feedback about the line of code I just created/modified. I cannot get that if I'm running full suites of integration and/or acceptance tests - tests that hit real disks, real networks, and really slow and unpredictable external systems.</p>
<p>Don't cross the beams. Bad things will happen if you do.</p>