Exemple #1
0
		public void GetListAllPeople_NoValuesGiveListOfPeople()
		{
			//arrange
			int expectedCount = 1;
			SQLFunctions functions = new SQLFunctions();
			//act
			List <CustomersDAO> actualCount = functions.GetAllPeople();
			//result(Assert)
			Assert.True(expectedCount <= actualCount.Count);
		}
Exemple #2
0
 public List <CustomersDAO> GetAllPeople()
 {
     return(sQL.GetAllPeople());
 }