Ejemplo n.º 1
0
        public void APIService()
        {
            //Arrange
            string url = "https://icanhazdadjoke.com/";

            //Act
            var response = _APIWrapper.APIConnect(url);

            //Assert
            Assert.IsNotNull(response.Result);
        }