If doing TDD, you may want a simple template to start every test: using NUnit.Framework; [TestFixture] public class MyTestFixture { private MyObjToTest...
I use jEdit to do most of my editing and it has support for what it calls appreviations. These are short character sequences that can be passed a few args and...
If you use Resharper you can add a 'live template' that do anything that you need. I added one in a matter of minutes to add a test case fixture. Check it...
... How is resharper behaving these days? The last time I had it installed was pre-1.0, and it generated quite a few errors. I was a dedicated IDEA adherent,...
Justin McCarthy
justinamccarthy@...
Nov 10, 2004 7:12 am
311
Since its release it has performed just fine. The good thing is that whenever they do post a bug fix it is on their website to download in a matter of days. I...
I have been using from pre-1.0 to now, and it seems like most of the bugs are worked out. You still get something every once in a while, but definitely is a...
Thanks a lot everybody. I am now following proper TDD ideology, to write code only when a test case fails. So probably wont need all these tools, thanks for...
I absolutely love Reshaper and would have paid much more for it. I wish they had a VB.NET version as well. I've been using the released version of it for...
Right now I am working on adding tests to an application without tests and I am curious to test some database properties. Has anyone actually used an Assert...
IDEA is made by the same people who made ReSharper... Amir Kolsky XP& Software _____ From: Michael Maddox [mailto:Michael.P.Maddox@...] Sent: Wednesday,...
If it wasn't for Resharper my life developing TDD would be a major pain. If you are planning on developing TDD than I would highly recommend Resharper. The...
Hello Steve, Pascal Van Cauwenberghe has written some articles on this topic, you can find them in the section Succeeding with "Agile Fixed Price" projects at ...
Hello Carlton, You could compare the XML of two datasets using XMLUnit for .NET, an extension to NUnit More info: http://xmlunit.sourceforge.net/ HTH, Bernard...
Justin, ... I had exactly the same experience and was really disappointed because I really wanted to like it. In addition to the bugs, I found that it ...
Great that you all are happy with Resharper, and I'll keep it in mind for once we have migrated to Visual Studio 2003. ;-) Meanwhile, we need to use 2002 for...
i can't recommend resharper enough. this is a truly fantastic product that, for me at least, has revolutionised .net development. .net development without...
... Agreed and this will be somewhat addressed with VS.NET 2005. If they re-release Resharper with 2005, I will probably still use it though even if their...
... I want to avoid comparing each field. Otherwise, I will have 140 asserts - yes there really are 140 columns in this table!. I did not design the schema,...
... What I did (and I'm not claiming this is a good solution since I haven't really tried any alternatives), was to write the datasets to a file as XML and...
Have you looked into DbUnit? I don't know if that would solve your particular problems. ... From: banshee858 ... I want to avoid comparing each field....
... Would it be feasible to write the before and after DataSet instance's XML to strings in memory and compare the strings? I seem to remember NUnit being...
Unfortunately, this option just tells the application to use v1.0 during runtime. The code is still compiled against v1.1. This is hard coded in VS.NET. -- ...
I am sorry I didn't get back to this thread. It has been a rough year and I am just now recovering from surgery. I will dig up what I did if anyone is still...
I have a bit of a problem trying to get a Crystal Report to generate from my unit tests. Basically, all I am trying to do is create a unit test that calls the...
... I may just drop the test if I cannot get Crystal Reports to work independently of the app. The whole purpose of the test is I feed the method known...