object = new Memory('memory'); } /** * Tears down the fixture, for example, closes a network connection. * This method is called after a test is executed. * * @access protected * @return void */ protected function tearDown() { unset($this->object); } /** * Test for getVariables * * @return void */ public function testGetVariables() { $this->assertEquals( $this->object->getVariables(), array( 'max_heap_table_size' => array( 'type' => 1, ) ) ); } }