public void TestSolLog() { StarMapService service = new StarMapService("secret", "McDonald", "http://beta.edsm.net:8080/"); service.sendStarMapLog("Sol"); StarMapInfo info = service.getStarMapInfo("Sol"); Assert.IsTrue(info.Visits >= 1); // can be any number thanks to repeated testing }
public void TestProximaCentauriComment() { StarMapService service = new StarMapService("secret", "McDonald", "http://beta.edsm.net:8080/"); service.sendStarMapLog("Proxima Centauri"); service.sendStarMapComment("Proxima Centauri", "Not so far away"); StarMapInfo info = service.getStarMapInfo("Proxima Centauri"); Assert.AreEqual("Not so far away", info.Comment); }