Nunit .net vs mono

若如初见. 提交于 2019-12-11 12:30:00

问题


I have written a simple test application using asp.net mvc with C#. The application uses MySQL by using dblinq to generate linq to MySQL files and the application is working both in windows and linux.

I have now started to use NUnit to test my code, mostly since I need to test if the code working under windows also will work in linux. My NUnit tests runs well under Windows but not under Linux.

This my Windows environment:

NUnit version 2.5.1.9189 Copyright (C) 2002-2009 Charlie Poole. Copyright (C) 2002-2004 James W. Newkirk, Michael C. Copyright (C) 2000-2002 Philip Craig. All Rights Reserved.

Runtime Environment - OS Version: Microsoft Windows NT 5.1.2600 Service CLR Version: 2.0.50727.3053 ( Net 2.0.50727.3053 )

This my Linux environment with the error (Library is my application name):

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 2.6.24.24 CLR Version: 1.1.4322.2032 ( Mono 2.4.2.2 )

** (/usr/local/lib/mono/1.0/nunit-console.exe:4888): WARNING **: The class System.ComponentModel.INotifyPropertyChanged could not be loaded, used in System, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 File or assembly name Library.Tests, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null, or one of its dependencies, was not found.

I can't figure out what I am doing wrong. Do you have any tips? It seems like I need to include System.ComponentModel.INotifyPropertyChanged, I have searched the Internet to see if it is implemented in mono but I can't find any information. Thank you


回答1:


Somehow you've started the 1.1 CLR - note "CLR Version: 1.1.4322.2032 ( Mono 2.4.2.2 )"

I'm not sure how you've done that, but I'm pretty sure that's the problem... How exactly are you running NUnit? I suspect that the problem is you're using a version of NUnit compiled against .NET 1.1, so Mono decides to load its own CLR v1.1. Assuming you're explicitly calling the mono binary, try specifying the --runtime argument, like this:

mono --runtime=2.0.50727 (whatever you previously had here)

EDIT: To find out which runtime version you've got, try this Test.cs file:

using System;

class Test
{
    static void Main()
    {
        Console.WriteLine(Environment.Version);
    }
}

Then compile and run it:

$ gmcs Test.cs
$ mono Test.exe
2.0.50727.1433

What version do you get out at the bottom?




回答2:


Most recent Mono distributions come with two different nunits - one is nunit-console (note no .exe suffix needed, since the packaging supplies convenience shell-scripts), and the other one is nunit-console2. The first is nunit compiled against the CLR 1.1 profile, and the second is nunit compiled against the CLR 2.0 profile.

So, the short version - you needed to use "nunit-console2" instead of "nunit-console" to get the correct nunit version for your tests.




回答3:


NUnit 2.5.10 is now supported on both windows and linux. I'm using 2.5.10 at work on both platforms without any problems.



来源:https://stackoverflow.com/questions/1178058/nunit-net-vs-mono

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!