|
|
@@ -14,8 +14,9 @@ namespace SharpGLTF
|
|
|
|
|
|
bytes = BinaryTable.GetBytes(GetTestArray<int>());
|
|
|
Assert.That(bytes.Length, Is.EqualTo(BinaryTable.GetSize<int>() * 2));
|
|
|
- bytes = BinaryTable.GetBytes(new List<string>() { "a", "b" });
|
|
|
- Assert.That(bytes.Length, Is.EqualTo(2));
|
|
|
+
|
|
|
+ //bytes = BinaryTable.GetBytes(new List<string>() { "a", "b" });
|
|
|
+ //Assert.That(bytes.Length, Is.EqualTo(2));
|
|
|
|
|
|
Assert.Throws<NotImplementedException>(() => BinaryTable.GetBytes(new List<bool>() { true, false }));
|
|
|
var ints = new List<List<int>>();
|