Gc\DocumentType\ModelTest::testSaveWithWrongValues PHP Метод

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

Test
public testSaveWithWrongValues ( ) : void
Результат void
    public function testSaveWithWrongValues()
    {
        $this->setExpectedException('Gc\\Exception');
        $model = $this->object->fromArray(array('name' => null, 'description' => null, 'icon_id' => null, 'defaultview_id' => null, 'user_id' => null));
        $this->assertFalse($model->save());
    }