Exemplo n.º 1
0
	/**
	 * @todo Decide how to Implement.
	 */
	public function testGetParent() {
		require_once(JPATH_BASE.'/libraries/joomla/base/adapterinstance.php');
		$this->object = new JAdapter(dirname(__FILE__), 'Test', 'adapters');

		$this->assertThat(
			$this->object->getAdapter('Testadapter3')->getParent(),
			$this->identicalTo($this->object)
		);
	}
 /**
  * @todo Decide how to Implement.
  */
 public function testGetParent()
 {
     $this->object = new JAdapter(JUnitHelper::normalize(dirname(__FILE__)), 'Test', 'TestAdapters');
     $this->assertThat($this->object->getAdapter('Testadapter3')->getParent(), $this->identicalTo($this->object));
 }