assertTrue( in_array( 'SetTo', $methods ), 'seems like this function is outside this class' ); } } /** * @covers DynaFormField::Load * @todo Implement testLoad(). */ public function testLoad() { if (class_exists('DynaFormField')) { $methods = get_class_methods( 'DynaFormField'); $this->assertTrue( in_array( 'Load', $methods ), 'seems like this function is outside this class' ); } } /** * @covers DynaFormField::Delete * @todo Implement testDelete(). */ public function testDelete() { if (class_exists('DynaFormField')) { $methods = get_class_methods( 'DynaFormField'); $this->assertTrue( in_array( 'Delete', $methods ), 'seems like this function is outside this class' ); } } /** * @covers DynaFormField::Save * @todo Implement testSave(). */ public function testSave() { if (class_exists('DynaFormField')) { $methods = get_class_methods( 'DynaFormField'); $this->assertTrue( in_array( 'Save', $methods ), 'seems like this function is outside this class' ); } } /** * @covers DynaFormField::isNew * @todo Implement testisNew(). */ public function testisNew() { if (class_exists('DynaFormField')) { $methods = get_class_methods( 'DynaFormField'); $this->assertTrue( in_array( 'isNew', $methods ), 'seems like this function is outside this class' ); } } }