Ejemplo n.º 1
0
function getUserFullName($data)
{
    expects(withKeys('first_name', 'last_name'), $data);
    return $data['first_name'] . ' ' . $data['last_name'];
}
Ejemplo n.º 2
0
 function expectsWithKeysNegativeTest($arg1)
 {
     expects(withKeys('hello', 'answer'), $arg1);
 }