What's the best way to implement BDD/TDD in .NET 2.0? - Stack Overflow most recent 30 from stackoverflow.com 2010-03-20T15:54:16Z http://stackoverflow.com/feeds/question/2214 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/2214/whats-the-best-way-to-implement-bdd-tdd-in-net-2-0 5 What's the best way to implement BDD/TDD in .NET 2.0? qrush http://stackoverflow.com/users/395 2008-08-05T12:50:15Z 2009-06-17T12:48:36Z <p>I'm looking to add a testing suite to my application, however I can't move to the newer testing frameworks for .NET 3.5. Does anyone have a suggestion about good testing frameworks to use?</p> http://stackoverflow.com/questions/2214/whats-the-best-way-to-implement-bdd-tdd-in-net-2-0/2220#2220 0 Answer by Nick Berardi for What's the best way to implement BDD/TDD in .NET 2.0? Nick Berardi http://stackoverflow.com/users/17 2008-08-05T12:51:47Z 2008-08-05T12:51:47Z <p>NUnit is always a favorite of mine. However if you are using TFS as your source control I suggest you stick with the Microsoft Stack. </p> http://stackoverflow.com/questions/2214/whats-the-best-way-to-implement-bdd-tdd-in-net-2-0/2228#2228 2 Answer by Rytmis for What's the best way to implement BDD/TDD in .NET 2.0? Rytmis http://stackoverflow.com/users/266 2008-08-05T12:54:20Z 2008-08-05T12:54:20Z <p>For a Mock Object library, I've found the BSD-licensed <a href="http://ayende.com/projects/rhino-mocks.aspx" rel="nofollow">Rhino.Mocks</a> to be rather pleasing.</p> http://stackoverflow.com/questions/2214/whats-the-best-way-to-implement-bdd-tdd-in-net-2-0/2246#2246 0 Answer by Ronnie for What's the best way to implement BDD/TDD in .NET 2.0? Ronnie http://stackoverflow.com/users/193 2008-08-05T13:03:45Z 2008-08-05T13:03:45Z <P>NUnit is available at <A href="http://www.nunit.org/" rel="nofollow">http://www.nunit.org</A> I would suggest this even when working on the MS stack - the support for non-MS frameworks is happening in the MVC previews which shows a definate movement in the right direction to allow us all to customise our stacks to fit.</P> http://stackoverflow.com/questions/2214/whats-the-best-way-to-implement-bdd-tdd-in-net-2-0/3423#3423 2 Answer by Jason Sparks for What's the best way to implement BDD/TDD in .NET 2.0? Jason Sparks http://stackoverflow.com/users/512 2008-08-06T14:06:19Z 2008-08-06T14:06:19Z <p>I've had great success using <a href="http://www.nunit.org" rel="nofollow">NUnit</a> as well.</p> <p>I've also used <a href="http://www.nmock.org" rel="nofollow">NMock</a> when the need arose for mock objects. As an added bonus, the factory for creating your mock objects is called the Mockery.</p> <p>To facilitate the running of unit tests, I've used <a href="http://testdriven.net" rel="nofollow">TestDriven.NET</a> to run unit tests as I coded. Also, I've used <a href="http://ccnet.thoughtworks.com" rel="nofollow">Cruise Control .NET</a> to watch SVN and check that every new commit builds and passes all unit tests.</p> http://stackoverflow.com/questions/2214/whats-the-best-way-to-implement-bdd-tdd-in-net-2-0/3443#3443 2 Answer by Dan for What's the best way to implement BDD/TDD in .NET 2.0? Dan http://stackoverflow.com/users/230 2008-08-06T14:16:35Z 2008-09-18T20:55:00Z <p>We use <a href="http://www.mbunit.com/" rel="nofollow">MbUnit</a> and <a href="http://www.ayende.com/Blog/archive/2007/03/28/Rhino-Mocks-3.0-Released.aspx" rel="nofollow">Rihno Mocks</a> and they prove to work very well together. When doing TDD you will almost certainly need to do some form of dependency injection, while this can be done manually, its worth looking at an IoC container such as <a href="http://www.castleproject.org/container/index.html" rel="nofollow">Castle Windor</a>.</p> <p>It well worth looking at John Paul Bodhood's screen casts to get you started. <a href="http://blog.jpboodhoo.com/ScreencastAppliedTestDrivenDevelopmentForWebApplicationsPart3.aspx" rel="nofollow">JPB's Blog</a></p> http://stackoverflow.com/questions/2214/whats-the-best-way-to-implement-bdd-tdd-in-net-2-0/48405#48405 0 Answer by fuzzbone for What's the best way to implement BDD/TDD in .NET 2.0? fuzzbone http://stackoverflow.com/users/5027 2008-09-07T12:58:49Z 2008-09-07T12:58:49Z <p>Using nUnit with TFS isn't too difficult. There's even a project on codeplex to implement this: <a href="http://www.codeplex.com/nunit4teambuild" rel="nofollow">http://www.codeplex.com/nunit4teambuild</a> which even "publishes" the results to the warehouse.</p> <p>I haven't tried it - but I would advise clients who have a large investment (or who have a strong preference for it over the MSTest tool) in nUnit who are interested in implementing TFS to continue with nUnit as opposed to trying convert all their existing tests.</p> http://stackoverflow.com/questions/2214/whats-the-best-way-to-implement-bdd-tdd-in-net-2-0/58587#58587 5 Answer by Colin Jack for What's the best way to implement BDD/TDD in .NET 2.0? Colin Jack http://stackoverflow.com/users/0 2008-09-12T10:02:36Z 2008-09-12T10:02:36Z <p>NUnit and Rhino suit well and the <a href="http://www.ayende.com/Blog/archive/2007/06/08/The-Auto-Mocking-Container.aspx" rel="nofollow">auto-mocking container</a> might be of interest.</p> <p>If you're looking at BDD too then <a href="http://nbehave.org/" rel="nofollow">NBehave</a> is probably a good choice. If however you just mean the style of BDD that relates to unit testing (xSpec) though you can get away with adding a framework (though things like <a href="http://code.google.com/p/specunit-net/" rel="nofollow">specunit</a> do add some synctactic sugar), but you might want to look at <a href="http://codebetter.com/blogs/aaron.jensen/archive/2008/05/08/introducing-machine-specifications-or-mspec-for-short.aspx" rel="nofollow">MSpec</a> is also interesting.</p> http://stackoverflow.com/questions/2214/whats-the-best-way-to-implement-bdd-tdd-in-net-2-0/142982#142982 1 Answer by smaclell for What's the best way to implement BDD/TDD in .NET 2.0? smaclell http://stackoverflow.com/users/22914 2008-09-27T04:28:28Z 2008-09-27T04:28:28Z <p>I am going to have to put a shout out for <a href="http://code.google.com/p/moq/" rel="nofollow" title="This is the project site, check it out">Moq</a>. It is clean light mocking framework that helps guide you into the pit of success. </p> <p>The testing tools built into TFS are okay, they will get the job done but can often be a little cumbersome to work with. The generated reports, code coverage and a few other portions are particularly bad, they make you go bald at 22 rather than 50. </p> <p>If you are really loving the testing, consider trying some Continuous Integration. You will feel the pain from regression quickly and potentially help you get to the end goal faster.</p> <p>Regardless of what you do try out a few and see which one is the most natural, if you have time. Good luck and happy coding.</p> http://stackoverflow.com/questions/2214/whats-the-best-way-to-implement-bdd-tdd-in-net-2-0/192489#192489 2 Answer by mmann2943 for What's the best way to implement BDD/TDD in .NET 2.0? mmann2943 http://stackoverflow.com/users/23861 2008-10-10T18:06:47Z 2008-10-10T18:06:47Z <p>This is probably a summary of what has already been said, but for TDD I personally use Rhino Mocks and MBUnit. Rhino Mocks is a mocking framework that is free and open source. The advantage of Rhino Mocks is we do not need to use magic strings in setting your expectations as you do in NMock. </p> <p>I like MBUnit because MbUnit has the concept of RowTests which allow you to vary your inputs to your test method. MBUnit is also freely available.</p> <p>You also want to make sure that whatever you choose for your unit testing framework is supported by your CI (Continuous Integration Server). Nunit is supported by default in Cruise Control.NET and you have to do a little extra work to get MBUnit to work in ccnet.</p> <p>From an IDE standpoint you must have TestDriven.NET. TestDriven.NET allows you to right click and run tests in the IDE and it supports MBUnit and Nunit and others.</p> <p>NBehave is the BDD library I have used. I have not used any others so I could not compare and contrast them with you, but NBehave is supported by Gallio from the MBUnit team, which means you can run your BDD tests just as you would your unit tests with TestDriven.NET.</p> <p>I would also highly recommend Resharper. You will find your productivity increase significantly with this refactoring and guidence tool. It will assist you with changing your code as you are developing your tests.</p> <p>Hope this helps</p> http://stackoverflow.com/questions/2214/whats-the-best-way-to-implement-bdd-tdd-in-net-2-0/204909#204909 0 Answer by Mocking_Bird for What's the best way to implement BDD/TDD in .NET 2.0? Mocking_Bird http://stackoverflow.com/users/0 2008-10-15T14:24:18Z 2008-10-15T14:24:18Z <p>I recommend the following:</p> <p><strong>TestDriven.NET</strong> - Unit Testing add on for VS that is fully integrated with all major unit testing frameworks including NUnit, MbUnit etc...</p> <p><strong>Typemock Isolator</strong>- A mocking framework for <a href="http://www.typemock.com/Docs/writing_unit_tests_with_isolator.html" rel="nofollow">.Net Unit Testing</a></p> <p><strong><a href="http://www.nunit.org" rel="nofollow">NUnit</a></strong> - An open source unit testing framework that is in C#.</p> http://stackoverflow.com/questions/2214/whats-the-best-way-to-implement-bdd-tdd-in-net-2-0/1006681#1006681 3 Answer by mcintyre321 for What's the best way to implement BDD/TDD in .NET 2.0? mcintyre321 http://stackoverflow.com/users/2086 2009-06-17T12:27:08Z 2009-06-17T12:27:08Z <p>Check out Rob Conery's screencast on BDD using MSpec. Very impressive <a href="http://blog.wekeroad.com/mvc-storefront/kona-3/" rel="nofollow">http://blog.wekeroad.com/mvc-storefront/kona-3/</a></p> http://stackoverflow.com/questions/2214/whats-the-best-way-to-implement-bdd-tdd-in-net-2-0/1006810#1006810 0 Answer by Michaël Larouche for What's the best way to implement BDD/TDD in .NET 2.0? Michaël Larouche http://stackoverflow.com/users/121981 2009-06-17T12:48:36Z 2009-06-17T12:48:36Z <p>For my project, I used NUnit and TestDrived.NET with great success. You can either create a separate library just to host your test code or you can put it in your executable or library. It all depend if you want your production code to be intertwine with your test code.</p> <p>For Depencendy Injection, I use <a href="http://www.ninject.org/" rel="nofollow" title="NInject">NInject</a> in my current project and its work great. If you use Constructor injection, you don't need to clutter your code with the [Inject] attribute.</p> <p>I haven't used a mock library for my .NET 2.0 project but for another .NET 3.5 project I will use <a href="http://code.google.com/p/moq/" rel="nofollow" title="Moq">Moq</a></p> <p>Note that all this works with .NET 2.0 and higher. (except Moq)</p>