Exemplo n.º 1
0
        public void TestMethod1()
        {
            Course C1 = new Course(101, "BCA", "Basics of computers.");
            //        Course C2 = new Course(202, "MBA", "Managing stuff.");
            //        Course C3 = new Course(303, "MCom", "Commercial stuff.");

            ParsingJSON P = new ParsingJSON();

            Assert.AreEqual(P.Parser(C1), 101);



            //
        }
Exemplo n.º 2
0
 private void OnEnable()
 {
     ParsingJSON.Pull("test.json", this);
 }