Local endpoint added successful and negative ownerId implemented

This commit is contained in:
2025-05-05 16:30:23 +03:00
parent cc5f82c7e7
commit ff4c3ecee3
27 changed files with 110 additions and 114 deletions
+23
View File
@@ -0,0 +1,23 @@
using mROA.Implementation;
namespace mROA.Test;
[TestFixture]
public class Identifier
{
[Test]
public void TestParse()
{
var id = new ComplexObjectIdentifier(-1, -1);
var flat = id.Flat;
var next = new ComplexObjectIdentifier { Flat = flat };
if (id.Equals(next))
{
Assert.Pass();
}
else
{
Assert.Fail();
}
}
}