Cviebrock\EloquentTaggable\Test\CollectionTests::testTagArray PHP Method

testTagArray() public method

Test getting the tag array
public testTagArray ( )
    public function testTagArray()
    {
        $this->testModel->tag('Apple,Banana,Cherry');
        $this->assertArrayValuesAreEqual(['Apple', 'Banana', 'Cherry'], $this->testModel->tagArray);
    }