using SPTarkov.Server.Core.Models.Spt.Templates; using SPTarkov.Server.Core.Utils; using SPTarkov.Server.Core.Utils.Json.Converters; using UnitTests.Mock; namespace UnitTests.Tests; [TestClass] public class Test { private Templates? _templates; [TestInitialize] public async Task Setup() { var importer = new ImporterUtil( new MockLogger(), new FileUtil(), DI.GetService() ); _templates = await importer.LoadRecursiveAsync("./TestAssets/"); } [TestMethod] public void TestMethod1() { var result = DI.GetService().Serialize(_templates); Console.WriteLine(result); } }