vote up 0 vote down star

In a Test project in Visual Studio 2008 (Pro), I created a Test project, and I want to configure the project properties to give a command line argument to the tests. I set the properties, but then realized I have no idea how to actually use the argument.

How do you get the arguments from MSTest?

flag

70% accept rate

4 Answers

vote up 0 vote down check

VS 2008 test are compiled into DLLs which can't directly receive command line arguments as far as I know.

You could add a configuration file 'app.config' for the dll and use that instead.

Just beware, mstest only copies .config files for the test container being run at the time.

if you have the following...

mytest.dll
mytest.dll.config
lib.dll
lib.dll.config

and you reference lib.dll from mytest.dll, when you run the tests lib.dll.config will not get copied and your test may fail because of this.

link|flag
vote up 1 vote down

Ben,

What do you need the arguments for? I'm having a hard time thinking of a scenario where I'd need a command line argument for my unit tests.

link|flag
vote up 0 vote down

Perhaps you can use GetCommandLine().

Edit: GetCommandLine() is a win32-function, but there ought to be a corresponding .Net function for it.

link|flag
vote up 0 vote down

@Esteban Araya: I've since re-thought how I was writing my tests; all the data I need is baked-in now, so I don't need the command line args.

I've also ditched MSTest now, in favor of NUnit+TestDriven.NET

link|flag

Your Answer

Get an OpenID
or

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