vote up 0 vote down star

I had a winforms C# class that internally was looking up a file.. to help unit test, i changed it to pass in a file from the outside such as:

string file = Path.GetDirectoryName(Assembly.GetExecutingAssembly().Location + "TestXML.xml");

Foo = new Foo(file);

the problem is that the code works fine normally but when run in Nunit it comes us with an error saying "Cant find directory C:\doc & settings\ . . .. testxml.xml

any thoughts?

flag

1 Answer

vote up 2 vote down check

I would set a breakpoint and then use the immediate window to find out what is getting passed to GetDirectoryName. It probably isn't what you intended.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.