Example #1
0
        public void AddDoor_ShouldGetAreEqual()
        {
            //Arrange
            //Test Initialize

            //Act
            int    id   = _content.BadgeID;
            string door = ("A4");

            _repo.AddDoor(id, door);

            //Assert
            Assert.AreEqual(4, _content.Doors.Count);
        }