Search Results

4
votes

UI Testing Framework + Continuous Integration ??

NUnitForms has a "hidden desktop" feature that will let you run unit tests from cc.net. …
0
votes

Using FolderBrowserDialog on a Removable Device / Removable storage

Is there a way to map the camera path to a drive letter? (I'm thinking something like "subst" or "net use" from a command prompt.) Maybe that would fool the FolderBrowserDialog into behaving as de …
3
votes

Visual Studio: ContextSwitchDeadlock

The ContextSwitchDeadlock doesn't necessarily mean your code has an issue, just that there is a potential. If you go to Debug > Exceptions in the menu and expand the "Managed Debugging Assistants" …
2
votes

Serious help on maintaining an ongoing project

The first thing that comes to mind is - Did they provide any sort of transition info (documentation, meetings with those who would be taking over, etc?) As a contractor, the code I write will beco …
1
vote

Adding a tab to the “Add Reference” dialog in VS?

I'm not sure about extending the existing dialog, but you might consider creating your own. Here is …
1
vote

Is using NUnit’s Sequential attribute a valid strategy to achieve one check per test?

It seems to me that your original two unit tests are easy enough to understand and could be left alone. In a given unit test you want to check one "unit" of functionality, which is not necessarily …
1
vote

Is there a way to specify ANYTHING as an argument to NUnit Mocks Expect call?

Looking at version 2.5.2 of nunit.mocks.dll in Reflector, it doesn't appear there is a method that does what you are looking for. NUnit is open source, so one option is to get the code and add the …