object = new PerformanceSchema('PERFORMANCE_SCHEMA'); } /** * Tears down the fixture, for example, closes a network connection. * This method is called after a test is executed. */ protected function tearDown(): void { parent::tearDown(); unset($this->object); } /** * Test for getMysqlHelpPage */ public function testGetMysqlHelpPage(): void { $this->assertEquals( $this->object->getMysqlHelpPage(), 'performance-schema' ); } }