public void DeleteTest() { Server.Close(); Server = new GXAuthenticationServer("http://localhost:6786/"); GXJsonClient cl = new GXJsonClient("http://localhost:6786/", "Gurux", "Gurux"); GXEchoRequest expected = new GXEchoRequest(); expected.Id = new Random().Next(); GXEchoResponse actual = cl.Delete(expected); Assert.AreEqual(expected.Id, actual.Id); }
public void MyTestInitialize() { Server = new GXServer("http://localhost:6786/", null, this); }