public void CheckConnectivityTest()
 {
     string url = "http://192.168.2.51:3000"; // TODO: Initialize to an appropriate value
     IntegrationProvider target = new IntegrationProvider(url, "1288383983"); // TODO: Initialize to an appropriate value
     bool expected = true; // TODO: Initialize to an appropriate value
     bool actual;
     actual = target.CheckConnectivity();
     Assert.AreEqual(expected, actual);
        // Assert.Inconclusive("Verify the correctness of this test method.");
 }
        public void GetCommandTest()
        {
            string url = string.Empty; // TODO: Initialize to an appropriate value
            IntegrationProvider target = new IntegrationProvider("http://merlinserver.jit.su","38384"); // TODO: Initialize to an appropriate value
            Command expected = null; // TODO: Initialize to an appropriate value
            Command actual;
            actual = target.GetCommand();

            Console.WriteLine(actual.ToString());

            Assert.AreEqual(expected, actual);
            //Assert.Inconclusive("Verify the correctness of this test method.");
        }