diff --git a/tests/suite/joomla/document/JDocumentTest.php b/tests/suite/joomla/document/JDocumentTest.php index c62b2b9e39b99..735423e6efc71 100644 --- a/tests/suite/joomla/document/JDocumentTest.php +++ b/tests/suite/joomla/document/JDocumentTest.php @@ -180,24 +180,6 @@ public function testGetType() ); } - /** - * This is an empty test for code coverage reasons (the method is empty) - */ - public function testGetHeadData() - { - $this->object = new JDocument; - $this->object->getHeadData(); - } - - /** - * This is an empty test for code coverage reasons (the method is empty) - */ - public function testSetHeadData() - { - $this->object = new JDocument; - $this->object->setHeadData(array()); - } - /** * Test getBuffer */ diff --git a/tests/suite/joomla/document/json/JDocumentJSONTest.php b/tests/suite/joomla/document/json/JDocumentJSONTest.php index cebc939d22a6d..b138ba8a5be89 100644 --- a/tests/suite/joomla/document/json/JDocumentJSONTest.php +++ b/tests/suite/joomla/document/json/JDocumentJSONTest.php @@ -91,22 +91,6 @@ public function testRender() ); } - /** - * This method does nothing. - */ - public function testGetHeadData() - { - $this->object->getHeadData(); - } - - /** - * This method does nothing. - */ - public function testSetHeadData() - { - $this->object->setHeadData('Head Data'); - } - /** * We test both at once */