PHPUnit\Runner\CleverAndSmart\Unit\UtilTest::testSetInvalidProperty PHP Method

testSetInvalidProperty() public method

    public function testSetInvalidProperty()
    {
        $this->setExpectedException('PHPUnit\\Runner\\CleverAndSmart\\Exception\\PropertyReflectionException', 'Property "invalidProperty" does not exist in hierarchy PHPUnit\\Runner\\CleverAndSmart\\Unit\\Child < PHPUnit\\Runner\\CleverAndSmart\\Unit\\Mother');
        Util::setInvisibleProperty(new Child(), 'invalidProperty', 'value');
    }