Cviebrock\EloquentTaggable\Test\TaggingTests::testTagging PHP Метод

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

Test basic tagging
public testTagging ( )
    public function testTagging()
    {
        $this->testModel->tag('Apple,Banana,Cherry');
        $this->assertEquals(3, count($this->testModel->tags));
        $this->assertArrayValuesAreEqual(['Apple', 'Banana', 'Cherry'], $this->testModel->tagArray);
    }