Files
raven-test-integration/ServerState/ServerStateTest.cs
2026-02-25 15:39:55 -08:00

26 lines
572 B
C#

using Xunit;
namespace raven_integration
{
public class ServerStateTest
{
/// <summary>
/// Test get state
/// </summary>
[Fact]
public async Task ServerStateShouldReturnOk()
{
ApiResponse a = await Util.GetAsync("server-state", await Util.GetTokenAsync("BizAdmin"));
Util.ValidateDataReturnResponseOk(a);
}
//NOTE: can't test set because it would break the other tests
//==================================================
}//eoc
}//eons