Example #1
0
        public void SendRequestTest()
        {
            //Arrange
            string      location = "wallet/getbalance";
            string      verb     = "GET";
            TwizoClient client   = new TwizoClient(TwizoTests.apiKey, TwizoTests.apiHost);

            //Act
            Response response = client.SendRequest(location, verb);

            //Assert
            Assert.AreEqual(response.statusCode, 200);
        }