/** * Test the getQuery method. * * @return void * * @since 1.0 * @covers Windwalker\Uri\Uri::getQuery */ public function testGetQuery() { $this->assertThat($this->object->getQuery(), $this->equalTo('var=value')); $this->assertThat($this->object->getQuery(true), $this->equalTo(array('var' => 'value'))); }