Files
tbd-station-14/Content.IntegrationTests/Tests/Utility/SandboxTest.cs
2023-07-06 14:54:25 +10:00

15 lines
442 B
C#

namespace Content.IntegrationTests.Tests.Utility;
public sealed class SandboxTest
{
[Test]
public async Task Test()
{
await using var pairTracker = await PoolManager.GetServerClient(new PoolSettings { NoServer = true, Destructive = true });
var client = pairTracker.Pair.Client;
await client.CheckSandboxed(typeof(Client.Entry.EntryPoint).Assembly);
await pairTracker.CleanReturnAsync();
}
}