From 90c8932fc7316b5afaae350395624b6fd2e73a97 Mon Sep 17 00:00:00 2001 From: Jon Skeet Date: Tue, 12 May 2015 09:47:19 +0100 Subject: Convert back to using NUnit, which is now loaded via NuGet. This includes the NUnit test adapter which allows NUnit tests to be run under VS without any extra plugins. Unfortunate the compatibility tests using the abstract test fixture class show up as "external" tests, and aren't well presented - but they do run. --- csharp/src/ProtocolBuffers.Test/Compatibility/TestResources.cs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'csharp/src/ProtocolBuffers.Test/Compatibility/TestResources.cs') diff --git a/csharp/src/ProtocolBuffers.Test/Compatibility/TestResources.cs b/csharp/src/ProtocolBuffers.Test/Compatibility/TestResources.cs index 4d1187a4..2282d61f 100644 --- a/csharp/src/ProtocolBuffers.Test/Compatibility/TestResources.cs +++ b/csharp/src/ProtocolBuffers.Test/Compatibility/TestResources.cs @@ -1,5 +1,5 @@ using System.IO; -using Xunit; +using NUnit.Framework; namespace Google.ProtocolBuffers.Compatibility { @@ -16,7 +16,7 @@ namespace Google.ProtocolBuffers.Compatibility byte[] bytes = new byte[resource.Length]; int amtRead = resource.Read(bytes, 0, bytes.Length); - Assert.Equal(bytes.Length, amtRead); + Assert.AreEqual(bytes.Length, amtRead); return bytes; } } @@ -30,7 +30,7 @@ namespace Google.ProtocolBuffers.Compatibility Assert.NotNull(resource); byte[] bytes = new byte[resource.Length]; int amtRead = resource.Read(bytes, 0, bytes.Length); - Assert.Equal(bytes.Length, amtRead); + Assert.AreEqual(bytes.Length, amtRead); return bytes; } } -- cgit v1.2.3