あなたは(つまりは上部にエイリアシングを追加する必要はありません)にどんなテストコードを変更したくない場合は、このシムは、私の作品:
using System;
using System.Collections;
namespace Microsoft.VisualStudio.TestTools.UnitTesting
{
public class Placeholder{}
public class TestClassAttribute : NUnit.Framework.TestFixtureAttribute
{
}
public class TestInitializeAttribute : NUnit.Framework.SetUpAttribute
{
}
public class TestMethodAttribute : NUnit.Framework.TestAttribute
{
}
public class TestCleanupAttribute : NUnit.Framework.TearDownAttribute
{
}
public class IgnoreAttribute : NUnit.Framework.IgnoreAttribute
{
}
public class ExpectedExceptionAttribute : NUnit.Framework.ExpectedExceptionAttribute
{
public ExpectedExceptionAttribute(Type exceptionType) : this(exceptionType, null)
{
}
public ExpectedExceptionAttribute(Type exceptionType, string message) : base(exceptionType)
{
UserMessage = message;
}
}
public class TestContext : NUnit.Framework.TestContext
{
public TestContext(IDictionary dictionary) : base(dictionary)
{
}
}
public class Assert : NUnit.Framework.Assert
{
public static void IsInstanceOfType(object obj, Type type)
{
NUnit.Framework.Assert.IsInstanceOfType (type, obj, null);
}
public static void IsInstanceOfType(object obj, Type type, string message)
{
NUnit.Framework.Assert.IsInstanceOfType (type, obj, message);
}
}
}
これは私のために働いていますNUnit経由でMSTestを実行する(少なくともXamarin Studioでモノラルで)。ファイルをインクルードして参照を取得するだけで(別のプロジェクトファイル(conditional references)が必要な場合があります)、あなたはうまくいきます。
さらに、少なくとも1つのアサートメソッドIsInstanceOfTypeがあります。これは、引数の順序が逆になるため互換性がありません。 –
StringAssert.Containsも互換性がなく、引数も逆になります。 –