for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Beelab\TagBundle\Tests\Entity;
use Beelab\TagBundle\Test\Entity;
use PHPUnit\Framework\TestCase;
/**
* @group unit
*/
final class AbstractTaggableTest extends TestCase
{
public function testAddTag(): void
$tag = $this->getMockBuilder('Beelab\TagBundle\Tag\TagInterface')->getMock();
$entity = new Entity();
$entity->addTag($tag);
$tag
object<PHPUnit\Framework\MockObject\MockObject>
object<Beelab\TagBundle\Tag\TagInterface>
It seems like the type of the argument is not accepted by the function/method which you are calling.
In some cases, in particular if PHP’s automatic type-juggling kicks in this might be fine. In other cases, however this might be a bug.
We suggest to add an explicit type cast like in the following example:
function acceptsInteger($int) { } $x = '123'; // string "123" // Instead of acceptsInteger($x); // we recommend to use acceptsInteger((integer) $x);
$this->assertTrue(in_array($tag, $entity->getTags()));
}
public function testRemoveTag(): void
$entity->removeTag($tag);
$this->assertFalse(in_array($tag, $entity->getTags()));
public function testGetTags(): void
$this->assertCount(1, $entity->getTags());
public function testGetTagsText(): void
$entity->setTagsText('foo, bar, baz');
$this->assertEquals('', $entity->getTagsText());
public function testGetTagNames(): void
$this->assertEquals([], $entity->getTagNames());
It seems like the type of the argument is not accepted by the function/method which you are calling.
In some cases, in particular if PHP’s automatic type-juggling kicks in this might be fine. In other cases, however this might be a bug.
We suggest to add an explicit type cast like in the following example: