Ejemplo n.º 1
0
        public void GetAllInspectorsShouldReturnListOfInspectors()
        {
            List <Employee> expected = _dbMock.Object.Employees.Where(e => e.Account.Role == Role.Inspector).ToList();

            List <Employee> actual = _inspectionService.GetAllInspectors();

            Assert.Equal(expected, actual);
        }