Пример #1
0
        public async Task CallGetEventDetailsAsync_ShouldReturnIRestResponse()
        {
            var response = await _sut.CallGetEventDetailsAsync(new GetRequest("Z1lMVSyiJynZ177dJa"));

            Assert.NotNull(response);
            Assert.IsType <RestResponse>(response);
            Assert.Equal(HttpStatusCode.OK, response.StatusCode);
            Assert.NotNull(response.Content);
        }