Re: Best unit testing tools

2015-04-02 Thread Bec C
+1 for BDD On Tuesday, 31 March 2015, Corneliu I. Tusnea wrote: > BDD. http://en.wikipedia.org/wiki/Behavior-driven_development > There is a BDD package for .Net as well. > > Once you learn to write you test out of small bite-size pieces you'll love > it's power. > I hate unit tests. I think the

Re: Best unit testing tools

2015-03-31 Thread David Burstin
+1 for Specflow I like to use BDD through specflow for my automated acceptance tests of major pieces of functionality. These are my integration tests - big, slow, exercise the system from end to end to show that the pieces play nicely with each other. I then move to microtests (often called unit t

Re: Best unit testing tools

2015-03-31 Thread osjasonroberts
Two .NET BDD tools: http://docs.teststack.net/bddfy/index.html & http://www.specflow.org/ Jason Roberts Journeyman Software Developer Twitter: @robertsjason Blog: http://DontCodeTired.com Pluralsight Courses: http://bit.ly/psjasonroberts ===

Re: Best unit testing tools

2015-03-31 Thread Corneliu I. Tusnea
BDD. http://en.wikipedia.org/wiki/Behavior-driven_development There is a BDD package for .Net as well. Once you learn to write you test out of small bite-size pieces you'll love it's power. I hate unit tests. I think they are easy for simple code that is not worth testing and too complicated to se

Re: Best unit testing tools

2015-03-30 Thread David Burstin
Xunit, moq, resharper, ncrunch, fluentassertions On 31 March 2015 at 09:24, William Luu wrote: > Perhaps start from the first post of that series - > https://lostechies.com/jimmybogard/2015/01/29/clean-tests-a-primer/ > > The author mentions Fixie, which is a fairly new testing framework - > htt

Re: Best unit testing tools

2015-03-30 Thread William Luu
Perhaps start from the first post of that series - https://lostechies.com/jimmybogard/2015/01/29/clean-tests-a-primer/ The author mentions Fixie, which is a fairly new testing framework - http://fixie.github.io On 30 March 2015 at 22:23, William Luu wrote: > We're reviewing what to use for a n

Re: Best unit testing tools

2015-03-30 Thread William Luu
We're reviewing what to use for a new project and I'm leaning towards the below: Unit testing framework: xunit (2.0 was recently released) Mocking: FakeItEasy Also, take a look at AutoFixture. See - https://lostechies.com/jimmybogard/2015/03/24/clean-tests-isolation-with-fakes/ On Mon, Mar 30,

Re: Best unit testing tools

2015-03-30 Thread Dave Walker
Nunit, moq, and resharper runner. Ncrunch if your company will pay for it. On 30 Mar 2015 23:49, "Tony Wright" wrote: > Hi all, > > What are people using these days to unit test code dot net code, and if > not visual studio, why? > > Regards Tony >

Best unit testing tools

2015-03-30 Thread Tony Wright
Hi all, What are people using these days to unit test code dot net code, and if not visual studio, why? Regards Tony