1 | <?php |
||
22 | class AndSpecificationTest extends TestCase |
||
23 | { |
||
24 | /** @var HasExtension */ |
||
25 | private $hasExtension; |
||
26 | |||
27 | /** @var IsHidden */ |
||
28 | private $isHidden; |
||
29 | |||
30 | /** @var AndSpecification */ |
||
31 | private $fixture; |
||
32 | |||
33 | /** |
||
34 | * Initializes the fixture for this test. |
||
35 | */ |
||
36 | public function setUp() |
||
42 | |||
43 | public function tearDown() |
||
47 | |||
48 | /** |
||
49 | * @covers ::__construct |
||
50 | * @covers ::isSatisfiedBy |
||
51 | */ |
||
52 | public function testIfSpecificationIsSatisfied() |
||
59 | |||
60 | /** |
||
61 | * @covers ::__construct |
||
62 | * @covers ::isSatisfiedBy |
||
63 | */ |
||
64 | public function testIfSpecificationIsNotSatisfied() |
||
71 | } |
||
72 |
This check looks for calls to methods that do not seem to exist on a given type. It looks for the method on the type itself as well as in inherited classes or implemented interfaces.
This is most likely a typographical error or the method has been renamed.