Ejemplo n.º 1
0
 def testHideCells_is_equal_to_42_when_the_dificult_level_is_High(self):
     input_matrix=MatrixHandler([])
     input_matrix.generator("High")
     actual_result =input_matrix.countZeroQuantity()
     self.assertTrue(actual_result>=42)
Ejemplo n.º 2
0
 def testHideCells_is_equal_to_39_when_the_dificult_level_is_Medium(self):
     input_matrix=MatrixHandler([])
     input_matrix.generator("Medium")
     actual_result=input_matrix.countZeroQuantity()
     self.assertTrue(actual_result>=36 and actual_result<=39)