using DTLib.Dtsod.V24.Autoarr; using DTLib.Dtsod.V24.KerepTypes; namespace DTLib.Tests; public static class TestAutoarr { public static void TestAll() { var ar = new Autoarr(4, 4, false); Fill(ar); Print(ar); Free(ar); } public static void Fill(Autoarr ar) { Info.Log("c", "----------[TestAutoarr/Fill]----------"); for(uint i=0;i ar) { Info.Log("c", "----------[TestAutoarr/Print]---------"); foreach (KVPair pair in ar) Info.Log("h", pair.ToString()); Info.Log("g", "test completed"); } public static void Free(Autoarr ar) { Info.Log("c", "----------[TestAutoarr/Free]----------"); ar.Dispose(); Info.Log("g", "test completed"); } }