Ejemplo n.º 1
0
        public void get_location_info_test()
        {
            location a = new location(new kid("This is a test kid name", "This is test address"));

            Assert.AreEqual(a.get_location_info().getName(), "This is a test kid name");
            Assert.AreEqual(a.get_location_info().getAddress(), "This is test address");
        }