Example #1
0
        public void Theater_Add_1()
        {
            // Arrange
            _theaterService.Add(new Theater {
                Name = "Arena Cineplex", Type = TheaterType.Cinema
            });

            // Act
            var theaters = _unitOfWork.Theaters.GetAll();

            // Assert
            Assert.AreEqual(1, theaters.Count());
        }