예제 #1
0
        public void FindForProject()
        {
            const long projectId      = 5;
            const long expectedLength = 1;
            var        repo           = new CollaboratorRepository(_context);
            var        res            = repo.FindForProject(projectId);

            Assert.Equal(expectedLength, res.Count());
        }