Phalcon\Test\Mvc\CollectionsTest::testCollectionsSave PHP Method

testCollectionsSave() public method

public testCollectionsSave ( )
    public function testCollectionsSave()
    {
        $car = new Cars();
        $car->manufacturer = 'Mclaren';
        $car->model = '650S';
        $car->rank = 1;
        $success = $car->save();
        $this->assertTrue($success);
        $this->clearData();
    }