Migrate to xUnit

This commit is contained in:
Frederik Carlier
2017-03-16 23:37:42 +01:00
parent 50335a9bba
commit d9670db803
10 changed files with 201 additions and 103 deletions

View File

@@ -1,16 +1,15 @@
using Claunia.PropertyList;
using NUnit.Framework;
using Xunit;
using System.IO;
namespace plistcil.test
{
[TestFixture]
public class PropertyListParserTests
{
[Test]
[Fact]
public static void ParseEmptyStreamTest()
{
Assert.Throws<PropertyListFormatException>(new TestDelegate(ParseEmptyStreamTestDelegate));
Assert.Throws<PropertyListFormatException>(() => ParseEmptyStreamTestDelegate());
}
static void ParseEmptyStreamTestDelegate()