/**
	 * Tests the JDatabaseQuery::length method.
	 *
	 * @return  void
	 *
	 * @covers  JDatabaseQuery::length
	 * @since   11.3
	 */
	public function testLength()
	{
		$this->assertThat(
			trim($this->_instance->length('foo')),
			$this->equalTo('LENGTH(foo)'),
			'Tests method renders correctly.'
		);
	}