Phalcon\Test\Unit\Mvc\CollectionTest::testShouldCreateDocument PHP 메소드

testShouldCreateDocument() 공개 메소드

Tests Collection::create
부터: 2016-03-13
저자: Serghei Iakovlev ([email protected])
    public function testShouldCreateDocument()
    {
        $this->specify("Collection::create does not work correctly", function () {
            $song = new Songs();
            $song->artist = 'Cinema Strange';
            $song->name = 'Greensward Grey';
            expect($song->create())->true();
            expect(Songs::count())->equals(4);
        });
    }