Esempio n. 1
0
        public void CanRetrieveSingleLocation()
        {
            var _location = gnrlManager.GetLocation(5);

            Assert.NotNull(_location);
            Assert.AreEqual(5, _location.ID);
            Assert.That(_location.Description, Is.EqualTo("Verbandkamer"), "Location Name");
            Assert.That(_location.Department.ID, Is.EqualTo(3), "Department ID");
        }