Ejemplo n.º 1
0
	/**
	 * 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.'
		);
	}
Ejemplo n.º 2
0
 /**
  * Test for the JDatabase::__call method.
  *
  * @return  void
  *
  * @since   12.1
  */
 public function test__callUnknown()
 {
     $this->assertThat($this->db->foo(), $this->isNull(), 'Tests for an unknown method.');
 }