You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
29 lines
704 B
C#
29 lines
704 B
C#
// Copyright Epic Games, Inc. All Rights Reserved.
|
|
|
|
using System.Threading;
|
|
using Microsoft.VisualStudio.TestTools.UnitTesting;
|
|
|
|
namespace HordeServerTests
|
|
{
|
|
[TestClass]
|
|
public class DatabaseRunnerTest
|
|
{
|
|
[TestMethod]
|
|
public void RunMongoDbTest()
|
|
{
|
|
MongoDbRunnerLocal Runner = new MongoDbRunnerLocal(DatabaseIntegrationTest.MongoDbDatabaseName);
|
|
Runner.Start();
|
|
Thread.Sleep(100);
|
|
Runner.Stop();
|
|
}
|
|
|
|
[TestMethod]
|
|
public void RunRedisTest()
|
|
{
|
|
RedisRunner Runner = new RedisRunner();
|
|
Runner.Start();
|
|
Thread.Sleep(100);
|
|
Runner.Stop();
|
|
}
|
|
}
|
|
} |