public void FindAllTestNotNull()
        {
            // Act
            int result = delegationRepository.FindAll().Count();

            // Assert
            Assert.IsTrue(result >= 0, "Unable to find all properly");
        }
Ejemplo n.º 2
0
 public List <Delegation> FindAllDelegations()
 {
     return(delegationRepository.FindAll().ToList());
 }