Gc\Property\CollectionTest::testSaveWithWrongValues PHP Method

testSaveWithWrongValues() public method

Test
public testSaveWithWrongValues ( ) : void
return void
    public function testSaveWithWrongValues()
    {
        $configuration = Registry::get('Application')->getConfig();
        if ($configuration['db']['driver'] == 'pdo_mysql') {
            $this->markTestSkipped('Mysql does not thrown exception.');
        }
        $this->setExpectedException('Gc\\Exception');
        $this->property->setIdentifier(null);
        $this->object->setProperties(array($this->property->getData()));
        $this->assertFalse($this->object->save());
    }