Gc\Property\Value\ModelTest::testSaveWithWrongValues PHP Method

testSaveWithWrongValues() public method

Test
public testSaveWithWrongValues ( ) : void
return void
    public function testSaveWithWrongValues()
    {
        $this->setExpectedException('Gc\\Exception');
        $this->object->setDocumentId(null);
        $this->assertFalse($this->object->save());
    }