David Müller
David Müller

Reputation: 5351

Running nunit-tests from the command line

I get the following output when trying to run nunit-console Testsuite.sln

NUnit version 2.4.8
Copyright (C) 2002-2007 Charlie Poole.
Copyright (C) 2002-2004 James W. Newkirk, Michael C. Two, Alexei A. Vorontsov.
Copyright (C) 2000-2002 Philip Craig.
All Rights Reserved.

Runtime Environment - 
   OS Version: Unix 11.4.0.0
  CLR Version: 2.0.50727.1433 ( 2.10.11 (mono-2-10/2baeee2 Wed Jan 16 16:40:16 EST 2013) )

Missing method .ctor in assembly /Users/administrator/Desktop/projectname/testsuite/bin/Debug/Testsuite.dll, type NUnit.Framework.TestFixtureAttribute
Can't find custom attr constructor image: /Users/administrator/Desktop/projectname/testsuite/bin/Debug/Testsuite.dll mtoken: 0x0a000004
Could not load file or assembly 'nunit.framework, Version=2.6.0.12051, Culture=neutral, PublicKeyToken=96d09a1eb7f44a77' or one of its dependencies.

Any suggestions? Running the test from the testrunner in mono develop works without problems.

Upvotes: 2

Views: 2504

Answers (1)

knocte
knocte

Reputation: 17929

It's not finding your nunit.framework.dll file, I think you have a borked installation. How did you install mono? How did you install NUnit?

Although I would recommend to fix your mono/nunit installation first, a possible workaround would be:

  1. Find where is nunit.framework.dll, by doing for example: find /usr | grep nunit
  2. Run nunit this way:

MONO_PATH=/path/where/nunit/dlls/are nunit-console4 Testsuite.dll

Upvotes: 3

Related Questions