/**
	 * Test JDocumentRenderer::render().
	 *
	 * Empty test because the base class does nothing
	 *
	 * @since 11.3
	 *
	 * @return void
	 */
	public function testRender()
	{
		$this->assertThat(
			$this->object->render('test'),
			$this->equalTo(null)
		);
	}
 /**
  * Empty test because the base class does nothing
  */
 public function testRender()
 {
     $doc = new JDocument();
     $this->object = new JDocumentRenderer($doc);
     $this->object->render('test');
 }
예제 #3
0
 public function testRenderByDefaultReturnsNull()
 {
     $this->assertNull($this->object->render('test'));
 }