mirror of
https://github.com/claunia/plist-cil.git
synced 2025-12-16 19:14:26 +00:00
21 lines
460 B
C#
21 lines
460 B
C#
|
|
using Claunia.PropertyList;
|
|||
|
|
using NUnit.Framework;
|
|||
|
|
using System.IO;
|
|||
|
|
|
|||
|
|
namespace plistcil.test
|
|||
|
|
{
|
|||
|
|
[TestFixture]
|
|||
|
|
public class PropertyListParserTests
|
|||
|
|
{
|
|||
|
|
[Test]
|
|||
|
|
[ExpectedException(typeof(PropertyListFormatException))]
|
|||
|
|
public static void ParseEmptyStreamTest()
|
|||
|
|
{
|
|||
|
|
using (MemoryStream stream = new MemoryStream())
|
|||
|
|
{
|
|||
|
|
PropertyListParser.Parse(stream);
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
}
|