mirror of
https://github.com/azaion/annotations.git
synced 2026-04-22 12:46:30 +00:00
rework to Azaion.Suite
This commit is contained in:
@@ -0,0 +1,21 @@
|
||||
using Azaion.Annotator.DTO;
|
||||
using Azaion.Common.DTO;
|
||||
using Xunit;
|
||||
|
||||
namespace Azaion.Annotator.Test;
|
||||
|
||||
public class DictTest
|
||||
{
|
||||
public Dictionary<string, List<YoloLabel>> Annotations = new();
|
||||
|
||||
[Fact]
|
||||
public void DictAddTest()
|
||||
{
|
||||
Annotations["sd"] = [new YoloLabel(1, 2, 2, 2, 2)];
|
||||
Annotations["sd"] =
|
||||
[
|
||||
new YoloLabel(1, 2, 2, 2, 2),
|
||||
new YoloLabel(0, 1, 3, 2, 1)
|
||||
];
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user