public void JsonSessionObjectToJsonTest() { TemplateJson tl = new JsonSession(); var json = tl.GetJson(new Session(40, "Johnathan", false)); Assert.AreEqual(correctJson, json); }
public void JsonSessionObjectToJsonInvalidTest() { bool exception = false; TemplateJson tl = new JsonSession(); try { var json = tl.GetJson("I am the wrong object"); } catch (InvalidLoginObjectException) { exception = true; } Assert.IsTrue(exception); }