/**
	 * Test for the JDatabase::__call method.
	 *
	 * @return  void
	 *
	 * @since   12.1
	 */
	public function test__call()
	{
		$this->assertThat(
			$this->db->q('foo'),
			$this->equalTo($this->db->quote('foo')),
			'Tests the q alias of quote.'
		);

		$this->assertThat(
			$this->db->qn('foo'),
			$this->equalTo($this->db->quoteName('foo')),
			'Tests the qn alias of quoteName.'
		);

		$this->assertThat(
			$this->db->foo(),
			$this->isNull(),
			'Tests for an unknown method.'
		);
	}
 /**
  * Test for the JDatabase::__call method.
  *
  * @return  void
  *
  * @since   12.1
  */
 public function test__callQuote()
 {
     $this->assertThat($this->db->q('foo'), $this->equalTo($this->db->quote('foo')), 'Tests the q alias of quote.');
 }