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