You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
20 lines
559 B
C#
20 lines
559 B
C#
// Copyright Epic Games, Inc. All Rights Reserved.
|
|
|
|
using System.Threading.Tasks;
|
|
using Microsoft.VisualStudio.TestTools.UnitTesting;
|
|
|
|
namespace HordeServerTests
|
|
{
|
|
[TestClass]
|
|
public class PoolsControllerTest : ControllerIntegrationTest
|
|
{
|
|
[TestMethod]
|
|
public async Task GetPoolsTest()
|
|
{
|
|
var Res = await client.GetAsync("/api/v1/pools");
|
|
Res.EnsureSuccessStatusCode();
|
|
var jsonData = await Res.Content.ReadAsStringAsync();
|
|
Assert.AreEqual("[]", jsonData);
|
|
}
|
|
}
|
|
} |