1 | <?php |
||||
2 | |||||
3 | declare(strict_types=1); |
||||
4 | |||||
5 | namespace Blackmine\Tests\Model\Issue; |
||||
6 | |||||
7 | use Blackmine\Model\Issue\Status; |
||||
8 | use Blackmine\Tests\Model\AbstractModelTest; |
||||
9 | |||||
10 | class StatusTest extends AbstractModelTest |
||||
11 | { |
||||
12 | public const TEST_MODEL = Status::class; |
||||
13 | |||||
14 | public function testClose() |
||||
15 | { |
||||
16 | $this->testable_entity->close(); |
||||
0 ignored issues
–
show
Bug
introduced
by
![]() |
|||||
17 | $this->assertTrue($this->testable_entity->isClosed()); |
||||
0 ignored issues
–
show
The method
isClosed() does not exist on Blackmine\Model\AbstractModel . Since you implemented __call , consider adding a @method annotation.
(
Ignorable by Annotation
)
If this is a false-positive, you can also ignore this issue in your code via the
![]() |
|||||
18 | } |
||||
19 | } |
||||
20 |