mirror of
https://github.com/claunia/plist-cil.git
synced 2025-12-16 19:14:26 +00:00
Migrate to xUnit
This commit is contained in:
@@ -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()
|
||||
|
||||
Reference in New Issue
Block a user