internal_encoding = mb_internal_encoding(); $this->testObject = new PMA_StringMB(); } else { $this->markTestSkipped( "Multibyte functions don't exist, skipping test." ); } } /** * TearDown function for tests, restores internal encoding * * @access protected * @return void */ protected function tearDown() { if (isset($this->internal_encoding)) { mb_internal_encoding($this->internal_encoding); } } } ?>