Exemple #1
0
        public void InventoryRepositoryReturnSetOfMatchedEntities()
        {
            // Arrange
            string model = "RS III";
            ISpecification <Inventory> spec = InventorySpecification.InventoryByModel(model);

            // Act
            var list = _repository.AllMatching(spec);

            // Accert
            Assert.IsNotNull(list);
        }