Переименование UOI в COI

This commit is contained in:
2025-03-10 21:56:22 +03:00
parent 96aa828808
commit 5e21d941df
11 changed files with 123 additions and 115 deletions
+5 -5
View File
@@ -4,12 +4,12 @@ namespace mROA.Test;
public class UnSOization
{
private UniversalObjectIdentifier _uoi;
private ComplexObjectIdentifier _uoi;
[SetUp]
public void Setup()
{
_uoi = new UniversalObjectIdentifier
_uoi = new ComplexObjectIdentifier
{
ContextId = -123, OwnerId = 123
};
@@ -19,8 +19,8 @@ public class UnSOization
public void FlatTest()
{
var flat = _uoi.Flat;
var next = new UniversalObjectIdentifier { Flat = flat };
var next = new ComplexObjectIdentifier { Flat = flat };
Assert.That(_uoi, Is.EqualTo(next));
}
}