Cviebrock\EloquentTaggable\Test\CollectionTests::testIsCollection PHP Метод

testIsCollection() публичный Метод

Test adding tags.
public testIsCollection ( )
    public function testIsCollection()
    {
        $this->testModel->tag('Apple,Banana,Cherry');
        $tags = $this->testModel->tags;
        $this->assertEquals(Collection::class, get_class($tags));
    }