[PHP] Write unit tests for function 'sum':
public function sum($a, $b) { if (!is_int($a) || !is_int($b)) { throw new InvalidArgumentException(); } return $a + $b;
}
Aucun commentaire:
Enregistrer un commentaire