public void ReadInJsonWithNonExistsPath() { GetJsonText g = new GetJsonText(); string path = "C\nonExists"; Assert.IsTrue(g.GetCustomersFromJsonFile(path) == null); }
public void ReadInJsonWithEmpthyPath() { GetJsonText g = new GetJsonText(); string path = ""; Assert.IsTrue(g.GetCustomersFromJsonFile(path) == null); }