assertTrue( in_array( 'tar_file', $methods ), 'seems like this function is outside this class' ); } } /** * @covers tar_file::create_tar * @todo Implement testcreate_tar(). */ public function testcreate_tar() { if (class_exists('tar_file')) { $methods = get_class_methods( 'tar_file'); $this->assertTrue( in_array( 'create_tar', $methods ), 'seems like this function is outside this class' ); } } /** * @covers tar_file::extract_files * @todo Implement testextract_files(). */ public function testextract_files() { if (class_exists('tar_file')) { $methods = get_class_methods( 'tar_file'); $this->assertTrue( in_array( 'extract_files', $methods ), 'seems like this function is outside this class' ); } } /** * @covers tar_file::open_archive * @todo Implement testopen_archive(). */ public function testopen_archive() { if (class_exists('tar_file')) { $methods = get_class_methods( 'tar_file'); $this->assertTrue( in_array( 'open_archive', $methods ), 'seems like this function is outside this class' ); } } }