1 | <?php |
||
23 | class NotSpecificationTest extends TestCase |
||
24 | { |
||
25 | /** @var HasExtension */ |
||
26 | private $hasExtension; |
||
27 | |||
28 | /** @var NotSpecification */ |
||
29 | private $fixture; |
||
30 | |||
31 | /** |
||
32 | * Initializes the fixture for this test. |
||
33 | */ |
||
34 | public function setUp() |
||
39 | |||
40 | public function tearDown() |
||
44 | |||
45 | /** |
||
46 | * @covers ::__construct |
||
47 | * @covers ::isSatisfiedBy |
||
48 | */ |
||
49 | public function testIfSpecificationIsSatisfied() |
||
55 | |||
56 | /** |
||
57 | * @covers ::__construct |
||
58 | * @covers ::isSatisfiedBy |
||
59 | */ |
||
60 | public function testIfSpecificationIsNotSatisfied() |
||
66 | } |
||
67 |
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.