1 | <?php |
||
15 | class TheMethod extends AbstractClassAssert |
||
16 | { |
||
17 | /** |
||
18 | * @var string |
||
19 | */ |
||
20 | private $method; |
||
21 | |||
22 | /** |
||
23 | * @param string|object $class |
||
24 | * @param string $method |
||
25 | */ |
||
26 | public function __construct($class, $method) |
||
31 | |||
32 | /** |
||
33 | * Returns the assert description |
||
34 | * |
||
35 | * @return string |
||
36 | */ |
||
37 | public function getDescription() |
||
41 | |||
42 | /** |
||
43 | * Creates the fail message |
||
44 | * |
||
45 | * @return string |
||
46 | */ |
||
47 | protected function createFailMessage() |
||
52 | |||
53 | /** |
||
54 | * Executes the assert |
||
55 | * |
||
56 | * @return boolean |
||
57 | */ |
||
58 | public function execute() |
||
63 | } |