object = new Memory('memory'); } /** * 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 getVariables */ public function testGetVariables(): void { $this->assertEquals( $this->object->getVariables(), [ 'max_heap_table_size' => ['type' => 1], ] ); } }