boolean() public static method

public static boolean ( ) : mixed
return mixed
Esempio n. 1
0
 public function testBooleanMethod()
 {
     $value = GiiantFaker::boolean();
     $this->specify('returned value is boolean', function () use($value) {
         expect('value is boolean', is_bool($value))->true();
     });
 }