Files
annotations/Azaion.Annotator/Azaion.Annotator.Test/DictTest.cs
T
Oleksandr Bezdieniezhnykh 3dc461e5df add Annotator
2024-05-14 22:12:11 +03:00

20 lines
439 B
C#

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)
];
}
}