Files
UnrealEngine/Engine/Source/Programs/Horde/HordeServer.Tests/Server/SchemaTests.cs
Brandyn / Techy fcc1b09210 init
2026-04-04 15:40:51 -05:00

31 lines
704 B
C#

// Copyright Epic Games, Inc. All Rights Reserved.
using EpicGames.Core;
using HordeServer.Plugins;
using HordeServer.Streams;
using HordeServer.Utilities;
using Microsoft.VisualStudio.TestTools.UnitTesting;
namespace HordeServer.Tests.Server
{
[TestClass]
public class SchemaTests
{
[TestMethod]
public void StreamSchema()
{
JsonSchemaCache cache = new JsonSchemaCache(new PluginCollection());
JsonSchema schema = cache.CreateSchema(typeof(StreamConfig));
_ = schema;
}
[TestMethod]
public void ProjectSchema()
{
JsonSchemaCache cache = new JsonSchemaCache(new PluginCollection());
JsonSchema schema = cache.CreateSchema(typeof(StreamConfig));
_ = schema;
}
}
}