Gc\Property\ModelTest::testIsRequired PHP Méthode

testIsRequired() public méthode

Test
public testIsRequired ( ) : void
Résultat void
    public function testIsRequired()
    {
        $this->assertFalse($this->object->isRequired());
        $this->assertInstanceOf('Gc\\Property\\Model', $this->object->isRequired(true));
        $this->assertTrue($this->object->isRequired());
        $this->assertInstanceOf('Gc\\Property\\Model', $this->object->isRequired(false));
        $this->assertFalse($this->object->isRequired());
    }