/**
  * @covers ::argIsACallable
  * @dataProvider  notCallableProvider
  */
 public function test_argIsACallable_exception($notCallable)
 {
     $this->expectException(invalidArgument::class);
     contract::argIsACallable($notCallable);
 }