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