Exemplo n.º 1
0
	/**
	 * Test for setDbo method.
	 *
	 * @covers JTable::setDbo
	 *
	 * @return  void
	 *
	 * @since   12.3
	 */
	public function testSetDBO()
	{
		$db = $this->getMockBuilder('JDatabaseDriver')
				->disableOriginalConstructor()
				->getMockForAbstractClass();

		$this->object->setDbo($db);

		$this->assertSame(
			$db,
			TestReflection::getValue($this->object, '_db')
		);
	}