add Annotator

This commit is contained in:
Oleksandr Bezdieniezhnykh
2024-05-14 22:12:11 +03:00
commit 3dc461e5df
29 changed files with 1620 additions and 0 deletions
@@ -0,0 +1,20 @@
using Azaion.Annotator.DTO;
using Xunit;
namespace Azaion.Annotator.Test;
public class DictTest
{
public Dictionary<string, List<AnnotationInfo>> Annotations = new();
[Fact]
public void DictAddTest()
{
Annotations["sd"] = [new AnnotationInfo(1, 2, 2, 2, 2)];
Annotations["sd"] =
[
new AnnotationInfo(1, 2, 2, 2, 2),
new AnnotationInfo(0, 1, 3, 2, 1)
];
}
}