Horde_Rdo_Test_Sql_Base::testListOffsetUnsetThrowException PHP Method

testListOffsetUnsetThrowException() public method

    public function testListOffsetUnsetThrowException()
    {
        $list = self::$LazyBaseObjectMapper->find();
        unset($list[0]);
        $this->assertTrue($list[0] instanceof Horde_Rdo_Test_Objects_SomeLazyBaseObject, "Throw exception when trying to unset an element");
    }