Search Results

2
votes

How do you unit test private methods?

On CodeProject, there is an article that briefly discusses pros and cons of testing private methods. It then provides some reflection code to access private methods (similar to the code Marcus pro …
1
vote

Managing complex Web.Config files between deployment environments.

I like to use a build task to automate changing the config file for the desired …
0
votes

Autostart Smart Client application

What about putting the app in the Startup section of the Start Menu? I'm not sure whether these are run before or after the items in the registry, but this may cause enough of a delay. As …
0
votes

Need help moving nUnit tests into separate project

Is the problem with it not finding the application itself, or one of the application's dependencies? You might try using either FileMon or the Fusion Log Viewer to see what exactly is failing. It …
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 …
1
vote

Error Compiling Program in Visual Studio 2008

So it creates the dll but doesn't like to use it afterward? If that's the case, have you tried to open the dlls in Reflector to see what differences there might be between the first and second com …
0
votes

CruiseControl.Net complaining about xml

One thing to note - if you specify build tasks within the cruise control project, you don't have to specifically tell it to merge the output - it is handled automatically. One method of debugging …
1
vote

Is Linq2XSD Dead?

There is actually an old blog post from Scott Hanselman on this exact project, and the fact that it appeared dead to the outside world at one time. Of course that was a year ago, so some things ne …
1
vote

When should I manually dispose of controls? How do I know if a control implements IDisposable?

One option is to run FxCop over your assemblies. One of its rules will verify that Dispose is being called on all objects that implement IDisposable, and warn you if you have violations. E …
0
votes

Process Kill during execution of Nunit tests

Looks rather similar to another one of your questions. …
0
votes

NUnit Categories in combination?

Sounds like what you need is a third category of "catAandB". …
2
votes

Managing .NET assembly dependencies by dll reference rather than by project reference in VS.

Is there any reason why you want to allow for arbitrary solutions? It seems like it would be easier to create a single solution and put all of the projects in that solution. I try to avoid multip …