Gc\User\Role\ModelTest::testDelete PHP Method

testDelete() public method

Test
public testDelete ( ) : void
return void
    public function testDelete()
    {
        $model = new Model();
        $model->setName('New Name');
        $model->setDescription('Test description');
        $model->save();
        $this->assertTrue($model->delete());
    }