Пример #1
0
        public void JsonSessionObjectToJsonTest()
        {
            TemplateJson tl   = new JsonSession();
            var          json = tl.GetJson(new Session(40, "Johnathan", false));

            Assert.AreEqual(correctJson, json);
        }
Пример #2
0
        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);
        }