Outsourcing Classes by Supporting Unit Tests - Stack Overflow most recent 30 from stackoverflow.com2009-12-02T19:53:41Zhttp://stackoverflow.com/feeds/question/314768http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/314768/outsourcing-classes-by-supporting-unit-tests7Outsourcing Classes by Supporting Unit Testsdr. evil2008-11-24T16:54:48Z2008-11-24T19:01:38Z
<p>I've got an application which developed by employing TDD as methodology (not strictly but mostly).</p>
<p>Now I want to outsource some parts of the application because I don't have enough time to develop it. I'm planning use websites such as "Rent A Coder", "elancer" etc.</p>
<p>I don't want to give out my code to anyone else, so I'm planning to give them a "Class Design" and bunch of "Unit Tests" that the class need to pass.</p>
<p>After this point when I deliver the class I'll run it against my Unit Tester (with different values) and see if it can pass it. If it passes everyone will be happy, and I'll call this class from my application as planned and it'll work.</p>
<p>Do you think this is good idea? What sort of pitfalls might happen? And this sounds too good to me, if it's why other people are not doing this?</p>
http://stackoverflow.com/questions/314768/outsourcing-classes-by-supporting-unit-tests/314778#3147782Answer by joseph.ferris for Outsourcing Classes by Supporting Unit Testsjoseph.ferris2008-11-24T17:00:14Z2008-11-24T17:00:14Z<p>It makes sense, assuming that you have planned for this to work within your application. You should code your parts of the application to a defined interface, provide them with the interface and an applicable tests that you want to be validated to consider the assembly pass.</p>
<p>I would be very careful and thorough in designing the unit tests, making sure to expose a large scenario of failure scenarios. Also, I don't know how important it is to you, but if you could also distribute Code Analysis / FXCop rule exceptions for a person to code against as an additional step to try and ensure they follow the practices you lay out.</p>
http://stackoverflow.com/questions/314768/outsourcing-classes-by-supporting-unit-tests/314780#3147801Answer by chills42 for Outsourcing Classes by Supporting Unit Testschills422008-11-24T17:00:56Z2008-11-24T17:00:56Z<p>This seems like a good plan to me, in fact, this seems like a great way to put TDD to use!</p>
http://stackoverflow.com/questions/314768/outsourcing-classes-by-supporting-unit-tests/314787#3147874Answer by Gishu for Outsourcing Classes by Supporting Unit TestsGishu2008-11-24T17:04:42Z2008-11-24T17:08:54Z<p>Depends on how good and detailed your specs are (units tests + design). Getting those done right would be 75% of your battle won. It might work on a 'few classes piece' but won't scale I think to bigger problems. </p>
<p>Pitfalls: the cartoon about the swing. Make sure you communicate your designs effectively or your coders will build you an elephant with uneven legs when you want Shadowfax.
Tell them what you want, trust them and collaborate to come up with a design. A list of use-cases or user stories might be a better bet.</p>
<p><a href="http://www.uoregon.edu/~ftepfer/SchlFacilities/TireSwingTable.html" rel="nofollow">the classic cartoon</a>, and
<a href="http://www.jacobsen.no/anders/blog/archives/images/project.html" rel="nofollow">now in colour</a></p>
http://stackoverflow.com/questions/314768/outsourcing-classes-by-supporting-unit-tests/314979#3149792Answer by Jeffrey Fredrick for Outsourcing Classes by Supporting Unit TestsJeffrey Fredrick2008-11-24T18:29:24Z2008-11-24T18:29:24Z<p>You say you're outsourcing part of the application. I'm guessing that you don't mean some features but rather some subsystem.</p>
<p>In that case the "unit tests" you describe are really acceptance tests for the subsystem, right?</p>
<p>The distinction is that the unit tests are implementation aware while acceptance tests aren't.</p>
<p>I think trying to outsource with implementation aware unit tests is a poor idea. You don't have the opportunity for learning and evolving the design.</p>
<p>Outsourcing via acceptance tests seems a fine thing.</p>
http://stackoverflow.com/questions/314768/outsourcing-classes-by-supporting-unit-tests/315087#3150872Answer by bradheintz for Outsourcing Classes by Supporting Unit Testsbradheintz2008-11-24T19:01:38Z2008-11-24T19:01:38Z<p>I think unit tests might be valuable as specifications, but not complete. You're still going to have to make sure they understand the business value they're trying to deliver, where it fits in the overall picture, etc.</p>
<p>Also, keep in mind that just because something passes test, that doesn't mean it's good - a bubble sort still gets your data sorted. You need to review the code coming back.</p>