Beispiel #1
0
        public void ReadInJsonWithNonExistsPath()
        {
            GetJsonText g    = new GetJsonText();
            string      path = "C\nonExists";

            Assert.IsTrue(g.GetCustomersFromJsonFile(path) == null);
        }
Beispiel #2
0
        public void ReadInJsonWithEmpthyPath()
        {
            GetJsonText g    = new GetJsonText();
            string      path = "";

            Assert.IsTrue(g.GetCustomersFromJsonFile(path) == null);
        }