assertTrue( in_array( 'getAll', $methods ), 'seems like this function is outside this class' ); } } /** * @covers Applications::setDefaultFields * @todo Implement testsetDefaultFields(). */ public function testsetDefaultFields() { if (class_exists('Applications')) { $methods = get_class_methods( 'Applications'); $this->assertTrue( in_array( 'setDefaultFields', $methods ), 'seems like this function is outside this class' ); } } /** * @covers Applications::getDefaultFields * @todo Implement testgetDefaultFields(). */ public function testgetDefaultFields() { if (class_exists('Applications')) { $methods = get_class_methods( 'Applications'); $this->assertTrue( in_array( 'getDefaultFields', $methods ), 'seems like this function is outside this class' ); } } /** * @covers Applications::genericJsonResponse * @todo Implement testgenericJsonResponse(). */ public function testgenericJsonResponse() { if (class_exists('Applications')) { $methods = get_class_methods( 'Applications'); $this->assertTrue( in_array( 'genericJsonResponse', $methods ), 'seems like this function is outside this class' ); } } /** * @covers Applications::getSteps * @todo Implement testgetSteps(). */ public function testgetSteps() { if (class_exists('Applications')) { $methods = get_class_methods( 'Applications'); $this->assertTrue( in_array( 'getSteps', $methods ), 'seems like this function is outside this class' ); } } }