Eddie Garmon's Weblog

some architecture, some c#

Browse by Tags

All Tags » VisualStudio.Net (RSS)
NUnit extensions updated for 2.2.2
I have updated the ObjectGraphAssert and TimedTest extensions for NUnit 2.2.2. You can get them here per the read me... ObjectGraphAssert - allows you to compare 2 objects via all their properties, and the properties of all children in sub collections...
Why a Timed Test in NUnit 2.2?
In response to questions about the value add of Timed Tests in NUnit: There are several uses for timed tests, here are 6, and an update to the TimedTest code... (read more) ...
NUnit 2.2 Timed Tests...
Well I finally got around to working on some more NUnit enhancements. I have finished creating an extension for a timed test with resolution in milliseconds. (read more)...
Visual Studio .Net C# Item Templates Version 1.1.0
Updates were made for design time support for the 2 typed collection classes, courtesy Brendan Tompkins. I also updated the Registry class, as I found that it was not in sync with the template that I currently use. (read more)...
More Visual Studio Templates (with Installer)
Due to feedback from local sources, I am urged to share my most common Visual Studio Templates. Packaged in an installer for both VS 2002 and VS 2003 are the following templates: a class template, an enumeration template, an exception template, a nunit test template, a registry template, a typed collection template, and a typed hashed collection template ... read more ...
Cleaning the Visual Studio 2005 MRU list.
After playing with Visual Studio 2005 for a while, I have collecter many a deal link in my most recently used items list. Unfortunately, VS2k5 always shows every item in the MRU list on the start page... (read more) ...
Quickest way to create a repeating string in c#?
int repeatCount = 10; string value = "hello world."; string repeated = string.Join(value, new string[repeatCount + 1]); Console.WriteLine(repeated);
More Extending Nunit (version 2.2)
There is some slight code duplication (from the NUnit framework), but it works with 1.X and 2.0 frameworks... ObjectGraphAssert and ObjectGraphFixture: Here is the zip. If you create a failing test, please pass it on so I can update my code. Enjoy
Auto-Incrementing Build Numbers (C# for VS.Net)
I finally got fed up with manually updating the build numbers in the AssemblyInfo.cs files. I needed an automated solution, so now I have one, even though it is definately more of a hack than good code. To the point, I created a simple console app that...
More Templates
Due to requests, I am making available my Collection Templates . There is one thing to note about this template. When you do a Project > Add Class, and choose Collection Class, the class must be named [Object]Collection (name must end in the word collection...
More Posts Next page »