Ejemplo n.º 1
0
        public void ProcessFileTest()
        {
            JSONProcess file = new JSONProcess();

            file.ProcessFile("testJson.json");
            string expectedData = "Work with JSON file";

            Assert.AreEqual(expectedData, file.Data);
        }
Ejemplo n.º 2
0
 public RecvMsgParse(string path)
 {
     satJson = new JSONProcess(path);
 }