Merge pull request #57 from quamotion/fixes/uid-remove-deprecated

UID: Remove deprecated members
This commit is contained in:
2019-06-12 18:36:48 +01:00
committed by GitHub
2 changed files with 0 additions and 123 deletions

View File

@@ -52,20 +52,6 @@ namespace plistcil.test
Assert.Equal(new byte[] {0xAB, 0xCD, 0xEF, 0x00, 0x00, 0xEF, 0xCD, 0xAB}, uid.Bytes);
}
[Fact]
public void SByteUidTest()
{
UID uid = new UID("test", (sbyte)0x0F);
Assert.Equal(new byte[] {0x0F}, uid.Bytes);
}
[Fact]
public void ShortUidTest()
{
UID uid = new UID("test", (short)0x0F0F);
Assert.Equal(new byte[] {0x0F, 0x0F}, uid.Bytes);
}
[Fact]
public void UIntUidTest()
{