From f3051f4ea10d91162a18128830726d2623f44495 Mon Sep 17 00:00:00 2001 From: Yannick Warnier Date: Thu, 24 Apr 2014 18:46:16 -0500 Subject: [PATCH] Removed useless tests --- .../phpunit/classes/AccessTokenTest.class.php | 3 +- .../classes/CachingIteratorTest.class.php | 220 ------ tests/phpunit/classes/ClosureTest.class.php | 52 -- tests/phpunit/classes/CollatorTest.class.php | 184 ----- tests/phpunit/classes/DOMAttrTest.class.php | 40 - .../phpunit/classes/DOMElementTest.class.php | 244 ------- tests/phpunit/classes/DOMXPathTest.class.php | 76 -- .../classes/DateIntervalTest.class.php | 76 -- .../classes/DateTimeZoneTest.class.php | 100 --- .../classes/DirectoryIteratorTest.class.php | 160 ---- tests/phpunit/classes/FileStoreTest.class.php | 112 --- .../classes/FilesystemIteratorTest.class.php | 100 --- .../classes/GlobIteratorTest.class.php | 40 - .../classes/InfiniteIteratorTest.class.php | 40 - .../classes/IntlDateFormatterTest.class.php | 232 ------ .../classes/IteratorIteratorTest.class.php | 100 --- .../classes/LimitIteratorTest.class.php | 124 ---- .../classes/MessageFormatterTest.class.php | 148 ---- .../classes/NoRewindIteratorTest.class.php | 100 --- .../classes/NumberFormatterTest.class.php | 220 ------ tests/phpunit/classes/PDOTest.class.php | 220 ------ .../classes/ParentIteratorTest.class.php | 40 - tests/phpunit/classes/PharDataTest.class.php | 688 ------------------ .../classes/PharFileInfoTest.class.php | 196 ----- tests/phpunit/classes/PharTest.class.php | 688 ------------------ .../RecursiveArrayIteratorTest.class.php | 52 -- .../RecursiveCachingIteratorTest.class.php | 52 -- .../RecursiveDirectoryIteratorTest.class.php | 76 -- .../RecursiveIteratorIteratorTest.class.php | 232 ------ .../RecursiveRegexIteratorTest.class.php | 52 -- .../RecursiveTreeIteratorTest.class.php | 220 ------ .../classes/RegexIteratorTest.class.php | 124 ---- .../classes/ResourceBundleTest.class.php | 100 --- tests/phpunit/classes/ResultSetTest.class.php | 196 ----- .../classes/SimpleXMLElementTest.class.php | 184 ----- .../classes/SimpleXMLIteratorTest.class.php | 112 --- .../classes/mysqli_resultTest.class.php | 172 ----- .../phpunit/classes/mysqli_stmtTest.class.php | 220 ------ 38 files changed, 2 insertions(+), 5993 deletions(-) delete mode 100644 tests/phpunit/classes/CachingIteratorTest.class.php delete mode 100644 tests/phpunit/classes/ClosureTest.class.php delete mode 100644 tests/phpunit/classes/CollatorTest.class.php delete mode 100644 tests/phpunit/classes/DOMAttrTest.class.php delete mode 100644 tests/phpunit/classes/DOMElementTest.class.php delete mode 100644 tests/phpunit/classes/DOMXPathTest.class.php delete mode 100644 tests/phpunit/classes/DateIntervalTest.class.php delete mode 100644 tests/phpunit/classes/DateTimeZoneTest.class.php delete mode 100644 tests/phpunit/classes/DirectoryIteratorTest.class.php delete mode 100644 tests/phpunit/classes/FileStoreTest.class.php delete mode 100644 tests/phpunit/classes/FilesystemIteratorTest.class.php delete mode 100644 tests/phpunit/classes/GlobIteratorTest.class.php delete mode 100644 tests/phpunit/classes/InfiniteIteratorTest.class.php delete mode 100644 tests/phpunit/classes/IntlDateFormatterTest.class.php delete mode 100644 tests/phpunit/classes/IteratorIteratorTest.class.php delete mode 100644 tests/phpunit/classes/LimitIteratorTest.class.php delete mode 100644 tests/phpunit/classes/MessageFormatterTest.class.php delete mode 100644 tests/phpunit/classes/NoRewindIteratorTest.class.php delete mode 100644 tests/phpunit/classes/NumberFormatterTest.class.php delete mode 100644 tests/phpunit/classes/PDOTest.class.php delete mode 100644 tests/phpunit/classes/ParentIteratorTest.class.php delete mode 100644 tests/phpunit/classes/PharDataTest.class.php delete mode 100644 tests/phpunit/classes/PharFileInfoTest.class.php delete mode 100644 tests/phpunit/classes/PharTest.class.php delete mode 100644 tests/phpunit/classes/RecursiveArrayIteratorTest.class.php delete mode 100644 tests/phpunit/classes/RecursiveCachingIteratorTest.class.php delete mode 100644 tests/phpunit/classes/RecursiveDirectoryIteratorTest.class.php delete mode 100644 tests/phpunit/classes/RecursiveIteratorIteratorTest.class.php delete mode 100644 tests/phpunit/classes/RecursiveRegexIteratorTest.class.php delete mode 100644 tests/phpunit/classes/RecursiveTreeIteratorTest.class.php delete mode 100644 tests/phpunit/classes/RegexIteratorTest.class.php delete mode 100644 tests/phpunit/classes/ResourceBundleTest.class.php delete mode 100644 tests/phpunit/classes/ResultSetTest.class.php delete mode 100644 tests/phpunit/classes/SimpleXMLElementTest.class.php delete mode 100644 tests/phpunit/classes/SimpleXMLIteratorTest.class.php delete mode 100644 tests/phpunit/classes/mysqli_resultTest.class.php delete mode 100644 tests/phpunit/classes/mysqli_stmtTest.class.php diff --git a/tests/phpunit/classes/AccessTokenTest.class.php b/tests/phpunit/classes/AccessTokenTest.class.php index 88ba66142f..a7b5a3e82b 100644 --- a/tests/phpunit/classes/AccessTokenTest.class.php +++ b/tests/phpunit/classes/AccessTokenTest.class.php @@ -16,7 +16,7 @@ class AccessTokenTest extends PHPUnit_Framework_TestCase protected function setUp() { require_once dirname(__FILE__).'/../../../main/inc/global.inc.php'; - $this->object = new AccessToken; + $this->object = new AccessToken(1, 1, 1); } /** @@ -25,6 +25,7 @@ class AccessTokenTest extends PHPUnit_Framework_TestCase */ protected function tearDown() { + unset($this->object); } /** diff --git a/tests/phpunit/classes/CachingIteratorTest.class.php b/tests/phpunit/classes/CachingIteratorTest.class.php deleted file mode 100644 index 3dcc6eb0e5..0000000000 --- a/tests/phpunit/classes/CachingIteratorTest.class.php +++ /dev/null @@ -1,220 +0,0 @@ -object = new CachingIterator; - } - - /** - * Tears down the fixture, for example, closes a network connection. - * This method is called after a test is executed. - */ - protected function tearDown() - { - } - - /** - * @covers CachingIterator::rewind - * @todo Implement testRewind(). - */ - public function testRewind() - { - // Remove the following lines when you implement this test. - $this->markTestIncomplete( - 'This test has not been implemented yet.' - ); - } - - /** - * @covers CachingIterator::valid - * @todo Implement testValid(). - */ - public function testValid() - { - // Remove the following lines when you implement this test. - $this->markTestIncomplete( - 'This test has not been implemented yet.' - ); - } - - /** - * @covers CachingIterator::key - * @todo Implement testKey(). - */ - public function testKey() - { - // Remove the following lines when you implement this test. - $this->markTestIncomplete( - 'This test has not been implemented yet.' - ); - } - - /** - * @covers CachingIterator::current - * @todo Implement testCurrent(). - */ - public function testCurrent() - { - // Remove the following lines when you implement this test. - $this->markTestIncomplete( - 'This test has not been implemented yet.' - ); - } - - /** - * @covers CachingIterator::next - * @todo Implement testNext(). - */ - public function testNext() - { - // Remove the following lines when you implement this test. - $this->markTestIncomplete( - 'This test has not been implemented yet.' - ); - } - - /** - * @covers CachingIterator::hasNext - * @todo Implement testHasNext(). - */ - public function testHasNext() - { - // Remove the following lines when you implement this test. - $this->markTestIncomplete( - 'This test has not been implemented yet.' - ); - } - - /** - * @covers CachingIterator::__toString - * @todo Implement test__toString(). - */ - public function test__toString() - { - // Remove the following lines when you implement this test. - $this->markTestIncomplete( - 'This test has not been implemented yet.' - ); - } - - /** - * @covers CachingIterator::getInnerIterator - * @todo Implement testGetInnerIterator(). - */ - public function testGetInnerIterator() - { - // Remove the following lines when you implement this test. - $this->markTestIncomplete( - 'This test has not been implemented yet.' - ); - } - - /** - * @covers CachingIterator::getFlags - * @todo Implement testGetFlags(). - */ - public function testGetFlags() - { - // Remove the following lines when you implement this test. - $this->markTestIncomplete( - 'This test has not been implemented yet.' - ); - } - - /** - * @covers CachingIterator::setFlags - * @todo Implement testSetFlags(). - */ - public function testSetFlags() - { - // Remove the following lines when you implement this test. - $this->markTestIncomplete( - 'This test has not been implemented yet.' - ); - } - - /** - * @covers CachingIterator::offsetGet - * @todo Implement testOffsetGet(). - */ - public function testOffsetGet() - { - // Remove the following lines when you implement this test. - $this->markTestIncomplete( - 'This test has not been implemented yet.' - ); - } - - /** - * @covers CachingIterator::offsetSet - * @todo Implement testOffsetSet(). - */ - public function testOffsetSet() - { - // Remove the following lines when you implement this test. - $this->markTestIncomplete( - 'This test has not been implemented yet.' - ); - } - - /** - * @covers CachingIterator::offsetUnset - * @todo Implement testOffsetUnset(). - */ - public function testOffsetUnset() - { - // Remove the following lines when you implement this test. - $this->markTestIncomplete( - 'This test has not been implemented yet.' - ); - } - - /** - * @covers CachingIterator::offsetExists - * @todo Implement testOffsetExists(). - */ - public function testOffsetExists() - { - // Remove the following lines when you implement this test. - $this->markTestIncomplete( - 'This test has not been implemented yet.' - ); - } - - /** - * @covers CachingIterator::getCache - * @todo Implement testGetCache(). - */ - public function testGetCache() - { - // Remove the following lines when you implement this test. - $this->markTestIncomplete( - 'This test has not been implemented yet.' - ); - } - - /** - * @covers CachingIterator::count - * @todo Implement testCount(). - */ - public function testCount() - { - // Remove the following lines when you implement this test. - $this->markTestIncomplete( - 'This test has not been implemented yet.' - ); - } -} diff --git a/tests/phpunit/classes/ClosureTest.class.php b/tests/phpunit/classes/ClosureTest.class.php deleted file mode 100644 index 09d383916f..0000000000 --- a/tests/phpunit/classes/ClosureTest.class.php +++ /dev/null @@ -1,52 +0,0 @@ -object = new Closure; - } - - /** - * Tears down the fixture, for example, closes a network connection. - * This method is called after a test is executed. - */ - protected function tearDown() - { - } - - /** - * @covers Closure::bind - * @todo Implement testBind(). - */ - public function testBind() - { - // Remove the following lines when you implement this test. - $this->markTestIncomplete( - 'This test has not been implemented yet.' - ); - } - - /** - * @covers Closure::bindTo - * @todo Implement testBindTo(). - */ - public function testBindTo() - { - // Remove the following lines when you implement this test. - $this->markTestIncomplete( - 'This test has not been implemented yet.' - ); - } -} diff --git a/tests/phpunit/classes/CollatorTest.class.php b/tests/phpunit/classes/CollatorTest.class.php deleted file mode 100644 index 1bd7496f67..0000000000 --- a/tests/phpunit/classes/CollatorTest.class.php +++ /dev/null @@ -1,184 +0,0 @@ -object = new Collator; - } - - /** - * Tears down the fixture, for example, closes a network connection. - * This method is called after a test is executed. - */ - protected function tearDown() - { - } - - /** - * @covers Collator::create - * @todo Implement testCreate(). - */ - public function testCreate() - { - // Remove the following lines when you implement this test. - $this->markTestIncomplete( - 'This test has not been implemented yet.' - ); - } - - /** - * @covers Collator::compare - * @todo Implement testCompare(). - */ - public function testCompare() - { - // Remove the following lines when you implement this test. - $this->markTestIncomplete( - 'This test has not been implemented yet.' - ); - } - - /** - * @covers Collator::sort - * @todo Implement testSort(). - */ - public function testSort() - { - // Remove the following lines when you implement this test. - $this->markTestIncomplete( - 'This test has not been implemented yet.' - ); - } - - /** - * @covers Collator::sortWithSortKeys - * @todo Implement testSortWithSortKeys(). - */ - public function testSortWithSortKeys() - { - // Remove the following lines when you implement this test. - $this->markTestIncomplete( - 'This test has not been implemented yet.' - ); - } - - /** - * @covers Collator::asort - * @todo Implement testAsort(). - */ - public function testAsort() - { - // Remove the following lines when you implement this test. - $this->markTestIncomplete( - 'This test has not been implemented yet.' - ); - } - - /** - * @covers Collator::getAttribute - * @todo Implement testGetAttribute(). - */ - public function testGetAttribute() - { - // Remove the following lines when you implement this test. - $this->markTestIncomplete( - 'This test has not been implemented yet.' - ); - } - - /** - * @covers Collator::setAttribute - * @todo Implement testSetAttribute(). - */ - public function testSetAttribute() - { - // Remove the following lines when you implement this test. - $this->markTestIncomplete( - 'This test has not been implemented yet.' - ); - } - - /** - * @covers Collator::getStrength - * @todo Implement testGetStrength(). - */ - public function testGetStrength() - { - // Remove the following lines when you implement this test. - $this->markTestIncomplete( - 'This test has not been implemented yet.' - ); - } - - /** - * @covers Collator::setStrength - * @todo Implement testSetStrength(). - */ - public function testSetStrength() - { - // Remove the following lines when you implement this test. - $this->markTestIncomplete( - 'This test has not been implemented yet.' - ); - } - - /** - * @covers Collator::getLocale - * @todo Implement testGetLocale(). - */ - public function testGetLocale() - { - // Remove the following lines when you implement this test. - $this->markTestIncomplete( - 'This test has not been implemented yet.' - ); - } - - /** - * @covers Collator::getErrorCode - * @todo Implement testGetErrorCode(). - */ - public function testGetErrorCode() - { - // Remove the following lines when you implement this test. - $this->markTestIncomplete( - 'This test has not been implemented yet.' - ); - } - - /** - * @covers Collator::getErrorMessage - * @todo Implement testGetErrorMessage(). - */ - public function testGetErrorMessage() - { - // Remove the following lines when you implement this test. - $this->markTestIncomplete( - 'This test has not been implemented yet.' - ); - } - - /** - * @covers Collator::getSortKey - * @todo Implement testGetSortKey(). - */ - public function testGetSortKey() - { - // Remove the following lines when you implement this test. - $this->markTestIncomplete( - 'This test has not been implemented yet.' - ); - } -} diff --git a/tests/phpunit/classes/DOMAttrTest.class.php b/tests/phpunit/classes/DOMAttrTest.class.php deleted file mode 100644 index c3ff374d27..0000000000 --- a/tests/phpunit/classes/DOMAttrTest.class.php +++ /dev/null @@ -1,40 +0,0 @@ -object = new DOMAttr; - } - - /** - * Tears down the fixture, for example, closes a network connection. - * This method is called after a test is executed. - */ - protected function tearDown() - { - } - - /** - * @covers DOMAttr::isId - * @todo Implement testIsId(). - */ - public function testIsId() - { - // Remove the following lines when you implement this test. - $this->markTestIncomplete( - 'This test has not been implemented yet.' - ); - } -} diff --git a/tests/phpunit/classes/DOMElementTest.class.php b/tests/phpunit/classes/DOMElementTest.class.php deleted file mode 100644 index 099919508f..0000000000 --- a/tests/phpunit/classes/DOMElementTest.class.php +++ /dev/null @@ -1,244 +0,0 @@ -object = new DOMElement; - } - - /** - * Tears down the fixture, for example, closes a network connection. - * This method is called after a test is executed. - */ - protected function tearDown() - { - } - - /** - * @covers DOMElement::getAttribute - * @todo Implement testGetAttribute(). - */ - public function testGetAttribute() - { - // Remove the following lines when you implement this test. - $this->markTestIncomplete( - 'This test has not been implemented yet.' - ); - } - - /** - * @covers DOMElement::setAttribute - * @todo Implement testSetAttribute(). - */ - public function testSetAttribute() - { - // Remove the following lines when you implement this test. - $this->markTestIncomplete( - 'This test has not been implemented yet.' - ); - } - - /** - * @covers DOMElement::removeAttribute - * @todo Implement testRemoveAttribute(). - */ - public function testRemoveAttribute() - { - // Remove the following lines when you implement this test. - $this->markTestIncomplete( - 'This test has not been implemented yet.' - ); - } - - /** - * @covers DOMElement::getAttributeNode - * @todo Implement testGetAttributeNode(). - */ - public function testGetAttributeNode() - { - // Remove the following lines when you implement this test. - $this->markTestIncomplete( - 'This test has not been implemented yet.' - ); - } - - /** - * @covers DOMElement::setAttributeNode - * @todo Implement testSetAttributeNode(). - */ - public function testSetAttributeNode() - { - // Remove the following lines when you implement this test. - $this->markTestIncomplete( - 'This test has not been implemented yet.' - ); - } - - /** - * @covers DOMElement::removeAttributeNode - * @todo Implement testRemoveAttributeNode(). - */ - public function testRemoveAttributeNode() - { - // Remove the following lines when you implement this test. - $this->markTestIncomplete( - 'This test has not been implemented yet.' - ); - } - - /** - * @covers DOMElement::getElementsByTagName - * @todo Implement testGetElementsByTagName(). - */ - public function testGetElementsByTagName() - { - // Remove the following lines when you implement this test. - $this->markTestIncomplete( - 'This test has not been implemented yet.' - ); - } - - /** - * @covers DOMElement::getAttributeNS - * @todo Implement testGetAttributeNS(). - */ - public function testGetAttributeNS() - { - // Remove the following lines when you implement this test. - $this->markTestIncomplete( - 'This test has not been implemented yet.' - ); - } - - /** - * @covers DOMElement::setAttributeNS - * @todo Implement testSetAttributeNS(). - */ - public function testSetAttributeNS() - { - // Remove the following lines when you implement this test. - $this->markTestIncomplete( - 'This test has not been implemented yet.' - ); - } - - /** - * @covers DOMElement::removeAttributeNS - * @todo Implement testRemoveAttributeNS(). - */ - public function testRemoveAttributeNS() - { - // Remove the following lines when you implement this test. - $this->markTestIncomplete( - 'This test has not been implemented yet.' - ); - } - - /** - * @covers DOMElement::getAttributeNodeNS - * @todo Implement testGetAttributeNodeNS(). - */ - public function testGetAttributeNodeNS() - { - // Remove the following lines when you implement this test. - $this->markTestIncomplete( - 'This test has not been implemented yet.' - ); - } - - /** - * @covers DOMElement::setAttributeNodeNS - * @todo Implement testSetAttributeNodeNS(). - */ - public function testSetAttributeNodeNS() - { - // Remove the following lines when you implement this test. - $this->markTestIncomplete( - 'This test has not been implemented yet.' - ); - } - - /** - * @covers DOMElement::getElementsByTagNameNS - * @todo Implement testGetElementsByTagNameNS(). - */ - public function testGetElementsByTagNameNS() - { - // Remove the following lines when you implement this test. - $this->markTestIncomplete( - 'This test has not been implemented yet.' - ); - } - - /** - * @covers DOMElement::hasAttribute - * @todo Implement testHasAttribute(). - */ - public function testHasAttribute() - { - // Remove the following lines when you implement this test. - $this->markTestIncomplete( - 'This test has not been implemented yet.' - ); - } - - /** - * @covers DOMElement::hasAttributeNS - * @todo Implement testHasAttributeNS(). - */ - public function testHasAttributeNS() - { - // Remove the following lines when you implement this test. - $this->markTestIncomplete( - 'This test has not been implemented yet.' - ); - } - - /** - * @covers DOMElement::setIdAttribute - * @todo Implement testSetIdAttribute(). - */ - public function testSetIdAttribute() - { - // Remove the following lines when you implement this test. - $this->markTestIncomplete( - 'This test has not been implemented yet.' - ); - } - - /** - * @covers DOMElement::setIdAttributeNS - * @todo Implement testSetIdAttributeNS(). - */ - public function testSetIdAttributeNS() - { - // Remove the following lines when you implement this test. - $this->markTestIncomplete( - 'This test has not been implemented yet.' - ); - } - - /** - * @covers DOMElement::setIdAttributeNode - * @todo Implement testSetIdAttributeNode(). - */ - public function testSetIdAttributeNode() - { - // Remove the following lines when you implement this test. - $this->markTestIncomplete( - 'This test has not been implemented yet.' - ); - } -} diff --git a/tests/phpunit/classes/DOMXPathTest.class.php b/tests/phpunit/classes/DOMXPathTest.class.php deleted file mode 100644 index 501809c12e..0000000000 --- a/tests/phpunit/classes/DOMXPathTest.class.php +++ /dev/null @@ -1,76 +0,0 @@ -object = new DOMXPath; - } - - /** - * Tears down the fixture, for example, closes a network connection. - * This method is called after a test is executed. - */ - protected function tearDown() - { - } - - /** - * @covers DOMXPath::registerNamespace - * @todo Implement testRegisterNamespace(). - */ - public function testRegisterNamespace() - { - // Remove the following lines when you implement this test. - $this->markTestIncomplete( - 'This test has not been implemented yet.' - ); - } - - /** - * @covers DOMXPath::query - * @todo Implement testQuery(). - */ - public function testQuery() - { - // Remove the following lines when you implement this test. - $this->markTestIncomplete( - 'This test has not been implemented yet.' - ); - } - - /** - * @covers DOMXPath::evaluate - * @todo Implement testEvaluate(). - */ - public function testEvaluate() - { - // Remove the following lines when you implement this test. - $this->markTestIncomplete( - 'This test has not been implemented yet.' - ); - } - - /** - * @covers DOMXPath::registerPhpFunctions - * @todo Implement testRegisterPhpFunctions(). - */ - public function testRegisterPhpFunctions() - { - // Remove the following lines when you implement this test. - $this->markTestIncomplete( - 'This test has not been implemented yet.' - ); - } -} diff --git a/tests/phpunit/classes/DateIntervalTest.class.php b/tests/phpunit/classes/DateIntervalTest.class.php deleted file mode 100644 index edb7c2751e..0000000000 --- a/tests/phpunit/classes/DateIntervalTest.class.php +++ /dev/null @@ -1,76 +0,0 @@ -object = new DateInterval; - } - - /** - * Tears down the fixture, for example, closes a network connection. - * This method is called after a test is executed. - */ - protected function tearDown() - { - } - - /** - * @covers DateInterval::__wakeup - * @todo Implement test__wakeup(). - */ - public function test__wakeup() - { - // Remove the following lines when you implement this test. - $this->markTestIncomplete( - 'This test has not been implemented yet.' - ); - } - - /** - * @covers DateInterval::__set_state - * @todo Implement test__set_state(). - */ - public function test__set_state() - { - // Remove the following lines when you implement this test. - $this->markTestIncomplete( - 'This test has not been implemented yet.' - ); - } - - /** - * @covers DateInterval::format - * @todo Implement testFormat(). - */ - public function testFormat() - { - // Remove the following lines when you implement this test. - $this->markTestIncomplete( - 'This test has not been implemented yet.' - ); - } - - /** - * @covers DateInterval::createFromDateString - * @todo Implement testCreateFromDateString(). - */ - public function testCreateFromDateString() - { - // Remove the following lines when you implement this test. - $this->markTestIncomplete( - 'This test has not been implemented yet.' - ); - } -} diff --git a/tests/phpunit/classes/DateTimeZoneTest.class.php b/tests/phpunit/classes/DateTimeZoneTest.class.php deleted file mode 100644 index beac9095bc..0000000000 --- a/tests/phpunit/classes/DateTimeZoneTest.class.php +++ /dev/null @@ -1,100 +0,0 @@ -object = new DateTimeZone; - } - - /** - * Tears down the fixture, for example, closes a network connection. - * This method is called after a test is executed. - */ - protected function tearDown() - { - } - - /** - * @covers DateTimeZone::getName - * @todo Implement testGetName(). - */ - public function testGetName() - { - // Remove the following lines when you implement this test. - $this->markTestIncomplete( - 'This test has not been implemented yet.' - ); - } - - /** - * @covers DateTimeZone::getOffset - * @todo Implement testGetOffset(). - */ - public function testGetOffset() - { - // Remove the following lines when you implement this test. - $this->markTestIncomplete( - 'This test has not been implemented yet.' - ); - } - - /** - * @covers DateTimeZone::getTransitions - * @todo Implement testGetTransitions(). - */ - public function testGetTransitions() - { - // Remove the following lines when you implement this test. - $this->markTestIncomplete( - 'This test has not been implemented yet.' - ); - } - - /** - * @covers DateTimeZone::getLocation - * @todo Implement testGetLocation(). - */ - public function testGetLocation() - { - // Remove the following lines when you implement this test. - $this->markTestIncomplete( - 'This test has not been implemented yet.' - ); - } - - /** - * @covers DateTimeZone::listAbbreviations - * @todo Implement testListAbbreviations(). - */ - public function testListAbbreviations() - { - // Remove the following lines when you implement this test. - $this->markTestIncomplete( - 'This test has not been implemented yet.' - ); - } - - /** - * @covers DateTimeZone::listIdentifiers - * @todo Implement testListIdentifiers(). - */ - public function testListIdentifiers() - { - // Remove the following lines when you implement this test. - $this->markTestIncomplete( - 'This test has not been implemented yet.' - ); - } -} diff --git a/tests/phpunit/classes/DirectoryIteratorTest.class.php b/tests/phpunit/classes/DirectoryIteratorTest.class.php deleted file mode 100644 index 6b441d24a3..0000000000 --- a/tests/phpunit/classes/DirectoryIteratorTest.class.php +++ /dev/null @@ -1,160 +0,0 @@ -object = new DirectoryIterator; - } - - /** - * Tears down the fixture, for example, closes a network connection. - * This method is called after a test is executed. - */ - protected function tearDown() - { - } - - /** - * @covers DirectoryIterator::getFilename - * @todo Implement testGetFilename(). - */ - public function testGetFilename() - { - // Remove the following lines when you implement this test. - $this->markTestIncomplete( - 'This test has not been implemented yet.' - ); - } - - /** - * @covers DirectoryIterator::getExtension - * @todo Implement testGetExtension(). - */ - public function testGetExtension() - { - // Remove the following lines when you implement this test. - $this->markTestIncomplete( - 'This test has not been implemented yet.' - ); - } - - /** - * @covers DirectoryIterator::getBasename - * @todo Implement testGetBasename(). - */ - public function testGetBasename() - { - // Remove the following lines when you implement this test. - $this->markTestIncomplete( - 'This test has not been implemented yet.' - ); - } - - /** - * @covers DirectoryIterator::isDot - * @todo Implement testIsDot(). - */ - public function testIsDot() - { - // Remove the following lines when you implement this test. - $this->markTestIncomplete( - 'This test has not been implemented yet.' - ); - } - - /** - * @covers DirectoryIterator::rewind - * @todo Implement testRewind(). - */ - public function testRewind() - { - // Remove the following lines when you implement this test. - $this->markTestIncomplete( - 'This test has not been implemented yet.' - ); - } - - /** - * @covers DirectoryIterator::valid - * @todo Implement testValid(). - */ - public function testValid() - { - // Remove the following lines when you implement this test. - $this->markTestIncomplete( - 'This test has not been implemented yet.' - ); - } - - /** - * @covers DirectoryIterator::key - * @todo Implement testKey(). - */ - public function testKey() - { - // Remove the following lines when you implement this test. - $this->markTestIncomplete( - 'This test has not been implemented yet.' - ); - } - - /** - * @covers DirectoryIterator::current - * @todo Implement testCurrent(). - */ - public function testCurrent() - { - // Remove the following lines when you implement this test. - $this->markTestIncomplete( - 'This test has not been implemented yet.' - ); - } - - /** - * @covers DirectoryIterator::next - * @todo Implement testNext(). - */ - public function testNext() - { - // Remove the following lines when you implement this test. - $this->markTestIncomplete( - 'This test has not been implemented yet.' - ); - } - - /** - * @covers DirectoryIterator::seek - * @todo Implement testSeek(). - */ - public function testSeek() - { - // Remove the following lines when you implement this test. - $this->markTestIncomplete( - 'This test has not been implemented yet.' - ); - } - - /** - * @covers DirectoryIterator::__toString - * @todo Implement test__toString(). - */ - public function test__toString() - { - // Remove the following lines when you implement this test. - $this->markTestIncomplete( - 'This test has not been implemented yet.' - ); - } -} diff --git a/tests/phpunit/classes/FileStoreTest.class.php b/tests/phpunit/classes/FileStoreTest.class.php deleted file mode 100644 index 8673f4333e..0000000000 --- a/tests/phpunit/classes/FileStoreTest.class.php +++ /dev/null @@ -1,112 +0,0 @@ -object = new FileStore; - } - - /** - * Tears down the fixture, for example, closes a network connection. - * This method is called after a test is executed. - */ - protected function tearDown() - { - } - - /** - * @covers FileStore::course - * @todo Implement testCourse(). - */ - public function testCourse() - { - // Remove the following lines when you implement this test. - $this->markTestIncomplete( - 'This test has not been implemented yet.' - ); - } - - /** - * @covers FileStore::root - * @todo Implement testRoot(). - */ - public function testRoot() - { - // Remove the following lines when you implement this test. - $this->markTestIncomplete( - 'This test has not been implemented yet.' - ); - } - - /** - * @covers FileStore::accept - * @todo Implement testAccept(). - */ - public function testAccept() - { - // Remove the following lines when you implement this test. - $this->markTestIncomplete( - 'This test has not been implemented yet.' - ); - } - - /** - * @covers FileStore::add - * @todo Implement testAdd(). - */ - public function testAdd() - { - // Remove the following lines when you implement this test. - $this->markTestIncomplete( - 'This test has not been implemented yet.' - ); - } - - /** - * @covers FileStore::remove - * @todo Implement testRemove(). - */ - public function testRemove() - { - // Remove the following lines when you implement this test. - $this->markTestIncomplete( - 'This test has not been implemented yet.' - ); - } - - /** - * @covers FileStore::get - * @todo Implement testGet(). - */ - public function testGet() - { - // Remove the following lines when you implement this test. - $this->markTestIncomplete( - 'This test has not been implemented yet.' - ); - } - - /** - * @covers FileStore::new_id - * @todo Implement testNew_id(). - */ - public function testNew_id() - { - // Remove the following lines when you implement this test. - $this->markTestIncomplete( - 'This test has not been implemented yet.' - ); - } -} diff --git a/tests/phpunit/classes/FilesystemIteratorTest.class.php b/tests/phpunit/classes/FilesystemIteratorTest.class.php deleted file mode 100644 index 4f8a7001d0..0000000000 --- a/tests/phpunit/classes/FilesystemIteratorTest.class.php +++ /dev/null @@ -1,100 +0,0 @@ -object = new FilesystemIterator; - } - - /** - * Tears down the fixture, for example, closes a network connection. - * This method is called after a test is executed. - */ - protected function tearDown() - { - } - - /** - * @covers FilesystemIterator::rewind - * @todo Implement testRewind(). - */ - public function testRewind() - { - // Remove the following lines when you implement this test. - $this->markTestIncomplete( - 'This test has not been implemented yet.' - ); - } - - /** - * @covers FilesystemIterator::next - * @todo Implement testNext(). - */ - public function testNext() - { - // Remove the following lines when you implement this test. - $this->markTestIncomplete( - 'This test has not been implemented yet.' - ); - } - - /** - * @covers FilesystemIterator::key - * @todo Implement testKey(). - */ - public function testKey() - { - // Remove the following lines when you implement this test. - $this->markTestIncomplete( - 'This test has not been implemented yet.' - ); - } - - /** - * @covers FilesystemIterator::current - * @todo Implement testCurrent(). - */ - public function testCurrent() - { - // Remove the following lines when you implement this test. - $this->markTestIncomplete( - 'This test has not been implemented yet.' - ); - } - - /** - * @covers FilesystemIterator::getFlags - * @todo Implement testGetFlags(). - */ - public function testGetFlags() - { - // Remove the following lines when you implement this test. - $this->markTestIncomplete( - 'This test has not been implemented yet.' - ); - } - - /** - * @covers FilesystemIterator::setFlags - * @todo Implement testSetFlags(). - */ - public function testSetFlags() - { - // Remove the following lines when you implement this test. - $this->markTestIncomplete( - 'This test has not been implemented yet.' - ); - } -} diff --git a/tests/phpunit/classes/GlobIteratorTest.class.php b/tests/phpunit/classes/GlobIteratorTest.class.php deleted file mode 100644 index d03ae58119..0000000000 --- a/tests/phpunit/classes/GlobIteratorTest.class.php +++ /dev/null @@ -1,40 +0,0 @@ -object = new GlobIterator; - } - - /** - * Tears down the fixture, for example, closes a network connection. - * This method is called after a test is executed. - */ - protected function tearDown() - { - } - - /** - * @covers GlobIterator::count - * @todo Implement testCount(). - */ - public function testCount() - { - // Remove the following lines when you implement this test. - $this->markTestIncomplete( - 'This test has not been implemented yet.' - ); - } -} diff --git a/tests/phpunit/classes/InfiniteIteratorTest.class.php b/tests/phpunit/classes/InfiniteIteratorTest.class.php deleted file mode 100644 index 97a8912fd8..0000000000 --- a/tests/phpunit/classes/InfiniteIteratorTest.class.php +++ /dev/null @@ -1,40 +0,0 @@ -object = new InfiniteIterator; - } - - /** - * Tears down the fixture, for example, closes a network connection. - * This method is called after a test is executed. - */ - protected function tearDown() - { - } - - /** - * @covers InfiniteIterator::next - * @todo Implement testNext(). - */ - public function testNext() - { - // Remove the following lines when you implement this test. - $this->markTestIncomplete( - 'This test has not been implemented yet.' - ); - } -} diff --git a/tests/phpunit/classes/IntlDateFormatterTest.class.php b/tests/phpunit/classes/IntlDateFormatterTest.class.php deleted file mode 100644 index f798c882c4..0000000000 --- a/tests/phpunit/classes/IntlDateFormatterTest.class.php +++ /dev/null @@ -1,232 +0,0 @@ -object = new IntlDateFormatter; - } - - /** - * Tears down the fixture, for example, closes a network connection. - * This method is called after a test is executed. - */ - protected function tearDown() - { - } - - /** - * @covers IntlDateFormatter::create - * @todo Implement testCreate(). - */ - public function testCreate() - { - // Remove the following lines when you implement this test. - $this->markTestIncomplete( - 'This test has not been implemented yet.' - ); - } - - /** - * @covers IntlDateFormatter::getDateType - * @todo Implement testGetDateType(). - */ - public function testGetDateType() - { - // Remove the following lines when you implement this test. - $this->markTestIncomplete( - 'This test has not been implemented yet.' - ); - } - - /** - * @covers IntlDateFormatter::getTimeType - * @todo Implement testGetTimeType(). - */ - public function testGetTimeType() - { - // Remove the following lines when you implement this test. - $this->markTestIncomplete( - 'This test has not been implemented yet.' - ); - } - - /** - * @covers IntlDateFormatter::getCalendar - * @todo Implement testGetCalendar(). - */ - public function testGetCalendar() - { - // Remove the following lines when you implement this test. - $this->markTestIncomplete( - 'This test has not been implemented yet.' - ); - } - - /** - * @covers IntlDateFormatter::setCalendar - * @todo Implement testSetCalendar(). - */ - public function testSetCalendar() - { - // Remove the following lines when you implement this test. - $this->markTestIncomplete( - 'This test has not been implemented yet.' - ); - } - - /** - * @covers IntlDateFormatter::getTimeZoneId - * @todo Implement testGetTimeZoneId(). - */ - public function testGetTimeZoneId() - { - // Remove the following lines when you implement this test. - $this->markTestIncomplete( - 'This test has not been implemented yet.' - ); - } - - /** - * @covers IntlDateFormatter::setTimeZoneId - * @todo Implement testSetTimeZoneId(). - */ - public function testSetTimeZoneId() - { - // Remove the following lines when you implement this test. - $this->markTestIncomplete( - 'This test has not been implemented yet.' - ); - } - - /** - * @covers IntlDateFormatter::setPattern - * @todo Implement testSetPattern(). - */ - public function testSetPattern() - { - // Remove the following lines when you implement this test. - $this->markTestIncomplete( - 'This test has not been implemented yet.' - ); - } - - /** - * @covers IntlDateFormatter::getPattern - * @todo Implement testGetPattern(). - */ - public function testGetPattern() - { - // Remove the following lines when you implement this test. - $this->markTestIncomplete( - 'This test has not been implemented yet.' - ); - } - - /** - * @covers IntlDateFormatter::getLocale - * @todo Implement testGetLocale(). - */ - public function testGetLocale() - { - // Remove the following lines when you implement this test. - $this->markTestIncomplete( - 'This test has not been implemented yet.' - ); - } - - /** - * @covers IntlDateFormatter::setLenient - * @todo Implement testSetLenient(). - */ - public function testSetLenient() - { - // Remove the following lines when you implement this test. - $this->markTestIncomplete( - 'This test has not been implemented yet.' - ); - } - - /** - * @covers IntlDateFormatter::isLenient - * @todo Implement testIsLenient(). - */ - public function testIsLenient() - { - // Remove the following lines when you implement this test. - $this->markTestIncomplete( - 'This test has not been implemented yet.' - ); - } - - /** - * @covers IntlDateFormatter::format - * @todo Implement testFormat(). - */ - public function testFormat() - { - // Remove the following lines when you implement this test. - $this->markTestIncomplete( - 'This test has not been implemented yet.' - ); - } - - /** - * @covers IntlDateFormatter::parse - * @todo Implement testParse(). - */ - public function testParse() - { - // Remove the following lines when you implement this test. - $this->markTestIncomplete( - 'This test has not been implemented yet.' - ); - } - - /** - * @covers IntlDateFormatter::localtime - * @todo Implement testLocaltime(). - */ - public function testLocaltime() - { - // Remove the following lines when you implement this test. - $this->markTestIncomplete( - 'This test has not been implemented yet.' - ); - } - - /** - * @covers IntlDateFormatter::getErrorCode - * @todo Implement testGetErrorCode(). - */ - public function testGetErrorCode() - { - // Remove the following lines when you implement this test. - $this->markTestIncomplete( - 'This test has not been implemented yet.' - ); - } - - /** - * @covers IntlDateFormatter::getErrorMessage - * @todo Implement testGetErrorMessage(). - */ - public function testGetErrorMessage() - { - // Remove the following lines when you implement this test. - $this->markTestIncomplete( - 'This test has not been implemented yet.' - ); - } -} diff --git a/tests/phpunit/classes/IteratorIteratorTest.class.php b/tests/phpunit/classes/IteratorIteratorTest.class.php deleted file mode 100644 index db37edaa20..0000000000 --- a/tests/phpunit/classes/IteratorIteratorTest.class.php +++ /dev/null @@ -1,100 +0,0 @@ -object = new IteratorIterator; - } - - /** - * Tears down the fixture, for example, closes a network connection. - * This method is called after a test is executed. - */ - protected function tearDown() - { - } - - /** - * @covers IteratorIterator::rewind - * @todo Implement testRewind(). - */ - public function testRewind() - { - // Remove the following lines when you implement this test. - $this->markTestIncomplete( - 'This test has not been implemented yet.' - ); - } - - /** - * @covers IteratorIterator::valid - * @todo Implement testValid(). - */ - public function testValid() - { - // Remove the following lines when you implement this test. - $this->markTestIncomplete( - 'This test has not been implemented yet.' - ); - } - - /** - * @covers IteratorIterator::key - * @todo Implement testKey(). - */ - public function testKey() - { - // Remove the following lines when you implement this test. - $this->markTestIncomplete( - 'This test has not been implemented yet.' - ); - } - - /** - * @covers IteratorIterator::current - * @todo Implement testCurrent(). - */ - public function testCurrent() - { - // Remove the following lines when you implement this test. - $this->markTestIncomplete( - 'This test has not been implemented yet.' - ); - } - - /** - * @covers IteratorIterator::next - * @todo Implement testNext(). - */ - public function testNext() - { - // Remove the following lines when you implement this test. - $this->markTestIncomplete( - 'This test has not been implemented yet.' - ); - } - - /** - * @covers IteratorIterator::getInnerIterator - * @todo Implement testGetInnerIterator(). - */ - public function testGetInnerIterator() - { - // Remove the following lines when you implement this test. - $this->markTestIncomplete( - 'This test has not been implemented yet.' - ); - } -} diff --git a/tests/phpunit/classes/LimitIteratorTest.class.php b/tests/phpunit/classes/LimitIteratorTest.class.php deleted file mode 100644 index cfe77ed580..0000000000 --- a/tests/phpunit/classes/LimitIteratorTest.class.php +++ /dev/null @@ -1,124 +0,0 @@ -object = new LimitIterator; - } - - /** - * Tears down the fixture, for example, closes a network connection. - * This method is called after a test is executed. - */ - protected function tearDown() - { - } - - /** - * @covers LimitIterator::rewind - * @todo Implement testRewind(). - */ - public function testRewind() - { - // Remove the following lines when you implement this test. - $this->markTestIncomplete( - 'This test has not been implemented yet.' - ); - } - - /** - * @covers LimitIterator::valid - * @todo Implement testValid(). - */ - public function testValid() - { - // Remove the following lines when you implement this test. - $this->markTestIncomplete( - 'This test has not been implemented yet.' - ); - } - - /** - * @covers LimitIterator::key - * @todo Implement testKey(). - */ - public function testKey() - { - // Remove the following lines when you implement this test. - $this->markTestIncomplete( - 'This test has not been implemented yet.' - ); - } - - /** - * @covers LimitIterator::current - * @todo Implement testCurrent(). - */ - public function testCurrent() - { - // Remove the following lines when you implement this test. - $this->markTestIncomplete( - 'This test has not been implemented yet.' - ); - } - - /** - * @covers LimitIterator::next - * @todo Implement testNext(). - */ - public function testNext() - { - // Remove the following lines when you implement this test. - $this->markTestIncomplete( - 'This test has not been implemented yet.' - ); - } - - /** - * @covers LimitIterator::seek - * @todo Implement testSeek(). - */ - public function testSeek() - { - // Remove the following lines when you implement this test. - $this->markTestIncomplete( - 'This test has not been implemented yet.' - ); - } - - /** - * @covers LimitIterator::getPosition - * @todo Implement testGetPosition(). - */ - public function testGetPosition() - { - // Remove the following lines when you implement this test. - $this->markTestIncomplete( - 'This test has not been implemented yet.' - ); - } - - /** - * @covers LimitIterator::getInnerIterator - * @todo Implement testGetInnerIterator(). - */ - public function testGetInnerIterator() - { - // Remove the following lines when you implement this test. - $this->markTestIncomplete( - 'This test has not been implemented yet.' - ); - } -} diff --git a/tests/phpunit/classes/MessageFormatterTest.class.php b/tests/phpunit/classes/MessageFormatterTest.class.php deleted file mode 100644 index fa8d789601..0000000000 --- a/tests/phpunit/classes/MessageFormatterTest.class.php +++ /dev/null @@ -1,148 +0,0 @@ -object = new MessageFormatter; - } - - /** - * Tears down the fixture, for example, closes a network connection. - * This method is called after a test is executed. - */ - protected function tearDown() - { - } - - /** - * @covers MessageFormatter::create - * @todo Implement testCreate(). - */ - public function testCreate() - { - // Remove the following lines when you implement this test. - $this->markTestIncomplete( - 'This test has not been implemented yet.' - ); - } - - /** - * @covers MessageFormatter::format - * @todo Implement testFormat(). - */ - public function testFormat() - { - // Remove the following lines when you implement this test. - $this->markTestIncomplete( - 'This test has not been implemented yet.' - ); - } - - /** - * @covers MessageFormatter::formatMessage - * @todo Implement testFormatMessage(). - */ - public function testFormatMessage() - { - // Remove the following lines when you implement this test. - $this->markTestIncomplete( - 'This test has not been implemented yet.' - ); - } - - /** - * @covers MessageFormatter::parse - * @todo Implement testParse(). - */ - public function testParse() - { - // Remove the following lines when you implement this test. - $this->markTestIncomplete( - 'This test has not been implemented yet.' - ); - } - - /** - * @covers MessageFormatter::parseMessage - * @todo Implement testParseMessage(). - */ - public function testParseMessage() - { - // Remove the following lines when you implement this test. - $this->markTestIncomplete( - 'This test has not been implemented yet.' - ); - } - - /** - * @covers MessageFormatter::setPattern - * @todo Implement testSetPattern(). - */ - public function testSetPattern() - { - // Remove the following lines when you implement this test. - $this->markTestIncomplete( - 'This test has not been implemented yet.' - ); - } - - /** - * @covers MessageFormatter::getPattern - * @todo Implement testGetPattern(). - */ - public function testGetPattern() - { - // Remove the following lines when you implement this test. - $this->markTestIncomplete( - 'This test has not been implemented yet.' - ); - } - - /** - * @covers MessageFormatter::getLocale - * @todo Implement testGetLocale(). - */ - public function testGetLocale() - { - // Remove the following lines when you implement this test. - $this->markTestIncomplete( - 'This test has not been implemented yet.' - ); - } - - /** - * @covers MessageFormatter::getErrorCode - * @todo Implement testGetErrorCode(). - */ - public function testGetErrorCode() - { - // Remove the following lines when you implement this test. - $this->markTestIncomplete( - 'This test has not been implemented yet.' - ); - } - - /** - * @covers MessageFormatter::getErrorMessage - * @todo Implement testGetErrorMessage(). - */ - public function testGetErrorMessage() - { - // Remove the following lines when you implement this test. - $this->markTestIncomplete( - 'This test has not been implemented yet.' - ); - } -} diff --git a/tests/phpunit/classes/NoRewindIteratorTest.class.php b/tests/phpunit/classes/NoRewindIteratorTest.class.php deleted file mode 100644 index 89dc0752ac..0000000000 --- a/tests/phpunit/classes/NoRewindIteratorTest.class.php +++ /dev/null @@ -1,100 +0,0 @@ -object = new NoRewindIterator; - } - - /** - * Tears down the fixture, for example, closes a network connection. - * This method is called after a test is executed. - */ - protected function tearDown() - { - } - - /** - * @covers NoRewindIterator::rewind - * @todo Implement testRewind(). - */ - public function testRewind() - { - // Remove the following lines when you implement this test. - $this->markTestIncomplete( - 'This test has not been implemented yet.' - ); - } - - /** - * @covers NoRewindIterator::valid - * @todo Implement testValid(). - */ - public function testValid() - { - // Remove the following lines when you implement this test. - $this->markTestIncomplete( - 'This test has not been implemented yet.' - ); - } - - /** - * @covers NoRewindIterator::key - * @todo Implement testKey(). - */ - public function testKey() - { - // Remove the following lines when you implement this test. - $this->markTestIncomplete( - 'This test has not been implemented yet.' - ); - } - - /** - * @covers NoRewindIterator::current - * @todo Implement testCurrent(). - */ - public function testCurrent() - { - // Remove the following lines when you implement this test. - $this->markTestIncomplete( - 'This test has not been implemented yet.' - ); - } - - /** - * @covers NoRewindIterator::next - * @todo Implement testNext(). - */ - public function testNext() - { - // Remove the following lines when you implement this test. - $this->markTestIncomplete( - 'This test has not been implemented yet.' - ); - } - - /** - * @covers NoRewindIterator::getInnerIterator - * @todo Implement testGetInnerIterator(). - */ - public function testGetInnerIterator() - { - // Remove the following lines when you implement this test. - $this->markTestIncomplete( - 'This test has not been implemented yet.' - ); - } -} diff --git a/tests/phpunit/classes/NumberFormatterTest.class.php b/tests/phpunit/classes/NumberFormatterTest.class.php deleted file mode 100644 index 83c5b15bff..0000000000 --- a/tests/phpunit/classes/NumberFormatterTest.class.php +++ /dev/null @@ -1,220 +0,0 @@ -object = new NumberFormatter; - } - - /** - * Tears down the fixture, for example, closes a network connection. - * This method is called after a test is executed. - */ - protected function tearDown() - { - } - - /** - * @covers NumberFormatter::create - * @todo Implement testCreate(). - */ - public function testCreate() - { - // Remove the following lines when you implement this test. - $this->markTestIncomplete( - 'This test has not been implemented yet.' - ); - } - - /** - * @covers NumberFormatter::format - * @todo Implement testFormat(). - */ - public function testFormat() - { - // Remove the following lines when you implement this test. - $this->markTestIncomplete( - 'This test has not been implemented yet.' - ); - } - - /** - * @covers NumberFormatter::parse - * @todo Implement testParse(). - */ - public function testParse() - { - // Remove the following lines when you implement this test. - $this->markTestIncomplete( - 'This test has not been implemented yet.' - ); - } - - /** - * @covers NumberFormatter::formatCurrency - * @todo Implement testFormatCurrency(). - */ - public function testFormatCurrency() - { - // Remove the following lines when you implement this test. - $this->markTestIncomplete( - 'This test has not been implemented yet.' - ); - } - - /** - * @covers NumberFormatter::parseCurrency - * @todo Implement testParseCurrency(). - */ - public function testParseCurrency() - { - // Remove the following lines when you implement this test. - $this->markTestIncomplete( - 'This test has not been implemented yet.' - ); - } - - /** - * @covers NumberFormatter::setAttribute - * @todo Implement testSetAttribute(). - */ - public function testSetAttribute() - { - // Remove the following lines when you implement this test. - $this->markTestIncomplete( - 'This test has not been implemented yet.' - ); - } - - /** - * @covers NumberFormatter::getAttribute - * @todo Implement testGetAttribute(). - */ - public function testGetAttribute() - { - // Remove the following lines when you implement this test. - $this->markTestIncomplete( - 'This test has not been implemented yet.' - ); - } - - /** - * @covers NumberFormatter::setTextAttribute - * @todo Implement testSetTextAttribute(). - */ - public function testSetTextAttribute() - { - // Remove the following lines when you implement this test. - $this->markTestIncomplete( - 'This test has not been implemented yet.' - ); - } - - /** - * @covers NumberFormatter::getTextAttribute - * @todo Implement testGetTextAttribute(). - */ - public function testGetTextAttribute() - { - // Remove the following lines when you implement this test. - $this->markTestIncomplete( - 'This test has not been implemented yet.' - ); - } - - /** - * @covers NumberFormatter::setSymbol - * @todo Implement testSetSymbol(). - */ - public function testSetSymbol() - { - // Remove the following lines when you implement this test. - $this->markTestIncomplete( - 'This test has not been implemented yet.' - ); - } - - /** - * @covers NumberFormatter::getSymbol - * @todo Implement testGetSymbol(). - */ - public function testGetSymbol() - { - // Remove the following lines when you implement this test. - $this->markTestIncomplete( - 'This test has not been implemented yet.' - ); - } - - /** - * @covers NumberFormatter::setPattern - * @todo Implement testSetPattern(). - */ - public function testSetPattern() - { - // Remove the following lines when you implement this test. - $this->markTestIncomplete( - 'This test has not been implemented yet.' - ); - } - - /** - * @covers NumberFormatter::getPattern - * @todo Implement testGetPattern(). - */ - public function testGetPattern() - { - // Remove the following lines when you implement this test. - $this->markTestIncomplete( - 'This test has not been implemented yet.' - ); - } - - /** - * @covers NumberFormatter::getLocale - * @todo Implement testGetLocale(). - */ - public function testGetLocale() - { - // Remove the following lines when you implement this test. - $this->markTestIncomplete( - 'This test has not been implemented yet.' - ); - } - - /** - * @covers NumberFormatter::getErrorCode - * @todo Implement testGetErrorCode(). - */ - public function testGetErrorCode() - { - // Remove the following lines when you implement this test. - $this->markTestIncomplete( - 'This test has not been implemented yet.' - ); - } - - /** - * @covers NumberFormatter::getErrorMessage - * @todo Implement testGetErrorMessage(). - */ - public function testGetErrorMessage() - { - // Remove the following lines when you implement this test. - $this->markTestIncomplete( - 'This test has not been implemented yet.' - ); - } -} diff --git a/tests/phpunit/classes/PDOTest.class.php b/tests/phpunit/classes/PDOTest.class.php deleted file mode 100644 index 1d5fa1dce6..0000000000 --- a/tests/phpunit/classes/PDOTest.class.php +++ /dev/null @@ -1,220 +0,0 @@ -object = new PDO; - } - - /** - * Tears down the fixture, for example, closes a network connection. - * This method is called after a test is executed. - */ - protected function tearDown() - { - } - - /** - * @covers PDO::prepare - * @todo Implement testPrepare(). - */ - public function testPrepare() - { - // Remove the following lines when you implement this test. - $this->markTestIncomplete( - 'This test has not been implemented yet.' - ); - } - - /** - * @covers PDO::beginTransaction - * @todo Implement testBeginTransaction(). - */ - public function testBeginTransaction() - { - // Remove the following lines when you implement this test. - $this->markTestIncomplete( - 'This test has not been implemented yet.' - ); - } - - /** - * @covers PDO::commit - * @todo Implement testCommit(). - */ - public function testCommit() - { - // Remove the following lines when you implement this test. - $this->markTestIncomplete( - 'This test has not been implemented yet.' - ); - } - - /** - * @covers PDO::rollBack - * @todo Implement testRollBack(). - */ - public function testRollBack() - { - // Remove the following lines when you implement this test. - $this->markTestIncomplete( - 'This test has not been implemented yet.' - ); - } - - /** - * @covers PDO::inTransaction - * @todo Implement testInTransaction(). - */ - public function testInTransaction() - { - // Remove the following lines when you implement this test. - $this->markTestIncomplete( - 'This test has not been implemented yet.' - ); - } - - /** - * @covers PDO::setAttribute - * @todo Implement testSetAttribute(). - */ - public function testSetAttribute() - { - // Remove the following lines when you implement this test. - $this->markTestIncomplete( - 'This test has not been implemented yet.' - ); - } - - /** - * @covers PDO::exec - * @todo Implement testExec(). - */ - public function testExec() - { - // Remove the following lines when you implement this test. - $this->markTestIncomplete( - 'This test has not been implemented yet.' - ); - } - - /** - * @covers PDO::query - * @todo Implement testQuery(). - */ - public function testQuery() - { - // Remove the following lines when you implement this test. - $this->markTestIncomplete( - 'This test has not been implemented yet.' - ); - } - - /** - * @covers PDO::lastInsertId - * @todo Implement testLastInsertId(). - */ - public function testLastInsertId() - { - // Remove the following lines when you implement this test. - $this->markTestIncomplete( - 'This test has not been implemented yet.' - ); - } - - /** - * @covers PDO::errorCode - * @todo Implement testErrorCode(). - */ - public function testErrorCode() - { - // Remove the following lines when you implement this test. - $this->markTestIncomplete( - 'This test has not been implemented yet.' - ); - } - - /** - * @covers PDO::errorInfo - * @todo Implement testErrorInfo(). - */ - public function testErrorInfo() - { - // Remove the following lines when you implement this test. - $this->markTestIncomplete( - 'This test has not been implemented yet.' - ); - } - - /** - * @covers PDO::getAttribute - * @todo Implement testGetAttribute(). - */ - public function testGetAttribute() - { - // Remove the following lines when you implement this test. - $this->markTestIncomplete( - 'This test has not been implemented yet.' - ); - } - - /** - * @covers PDO::quote - * @todo Implement testQuote(). - */ - public function testQuote() - { - // Remove the following lines when you implement this test. - $this->markTestIncomplete( - 'This test has not been implemented yet.' - ); - } - - /** - * @covers PDO::__wakeup - * @todo Implement test__wakeup(). - */ - public function test__wakeup() - { - // Remove the following lines when you implement this test. - $this->markTestIncomplete( - 'This test has not been implemented yet.' - ); - } - - /** - * @covers PDO::__sleep - * @todo Implement test__sleep(). - */ - public function test__sleep() - { - // Remove the following lines when you implement this test. - $this->markTestIncomplete( - 'This test has not been implemented yet.' - ); - } - - /** - * @covers PDO::getAvailableDrivers - * @todo Implement testGetAvailableDrivers(). - */ - public function testGetAvailableDrivers() - { - // Remove the following lines when you implement this test. - $this->markTestIncomplete( - 'This test has not been implemented yet.' - ); - } -} diff --git a/tests/phpunit/classes/ParentIteratorTest.class.php b/tests/phpunit/classes/ParentIteratorTest.class.php deleted file mode 100644 index 37b407e64a..0000000000 --- a/tests/phpunit/classes/ParentIteratorTest.class.php +++ /dev/null @@ -1,40 +0,0 @@ -object = new ParentIterator; - } - - /** - * Tears down the fixture, for example, closes a network connection. - * This method is called after a test is executed. - */ - protected function tearDown() - { - } - - /** - * @covers ParentIterator::accept - * @todo Implement testAccept(). - */ - public function testAccept() - { - // Remove the following lines when you implement this test. - $this->markTestIncomplete( - 'This test has not been implemented yet.' - ); - } -} diff --git a/tests/phpunit/classes/PharDataTest.class.php b/tests/phpunit/classes/PharDataTest.class.php deleted file mode 100644 index dc339ecf44..0000000000 --- a/tests/phpunit/classes/PharDataTest.class.php +++ /dev/null @@ -1,688 +0,0 @@ -object = new PharData; - } - - /** - * Tears down the fixture, for example, closes a network connection. - * This method is called after a test is executed. - */ - protected function tearDown() - { - } - - /** - * @covers PharData::__destruct - * @todo Implement test__destruct(). - */ - public function test__destruct() - { - // Remove the following lines when you implement this test. - $this->markTestIncomplete( - 'This test has not been implemented yet.' - ); - } - - /** - * @covers PharData::addEmptyDir - * @todo Implement testAddEmptyDir(). - */ - public function testAddEmptyDir() - { - // Remove the following lines when you implement this test. - $this->markTestIncomplete( - 'This test has not been implemented yet.' - ); - } - - /** - * @covers PharData::addFile - * @todo Implement testAddFile(). - */ - public function testAddFile() - { - // Remove the following lines when you implement this test. - $this->markTestIncomplete( - 'This test has not been implemented yet.' - ); - } - - /** - * @covers PharData::addFromString - * @todo Implement testAddFromString(). - */ - public function testAddFromString() - { - // Remove the following lines when you implement this test. - $this->markTestIncomplete( - 'This test has not been implemented yet.' - ); - } - - /** - * @covers PharData::buildFromDirectory - * @todo Implement testBuildFromDirectory(). - */ - public function testBuildFromDirectory() - { - // Remove the following lines when you implement this test. - $this->markTestIncomplete( - 'This test has not been implemented yet.' - ); - } - - /** - * @covers PharData::buildFromIterator - * @todo Implement testBuildFromIterator(). - */ - public function testBuildFromIterator() - { - // Remove the following lines when you implement this test. - $this->markTestIncomplete( - 'This test has not been implemented yet.' - ); - } - - /** - * @covers PharData::compressFiles - * @todo Implement testCompressFiles(). - */ - public function testCompressFiles() - { - // Remove the following lines when you implement this test. - $this->markTestIncomplete( - 'This test has not been implemented yet.' - ); - } - - /** - * @covers PharData::decompressFiles - * @todo Implement testDecompressFiles(). - */ - public function testDecompressFiles() - { - // Remove the following lines when you implement this test. - $this->markTestIncomplete( - 'This test has not been implemented yet.' - ); - } - - /** - * @covers PharData::compress - * @todo Implement testCompress(). - */ - public function testCompress() - { - // Remove the following lines when you implement this test. - $this->markTestIncomplete( - 'This test has not been implemented yet.' - ); - } - - /** - * @covers PharData::decompress - * @todo Implement testDecompress(). - */ - public function testDecompress() - { - // Remove the following lines when you implement this test. - $this->markTestIncomplete( - 'This test has not been implemented yet.' - ); - } - - /** - * @covers PharData::convertToExecutable - * @todo Implement testConvertToExecutable(). - */ - public function testConvertToExecutable() - { - // Remove the following lines when you implement this test. - $this->markTestIncomplete( - 'This test has not been implemented yet.' - ); - } - - /** - * @covers PharData::convertToData - * @todo Implement testConvertToData(). - */ - public function testConvertToData() - { - // Remove the following lines when you implement this test. - $this->markTestIncomplete( - 'This test has not been implemented yet.' - ); - } - - /** - * @covers PharData::copy - * @todo Implement testCopy(). - */ - public function testCopy() - { - // Remove the following lines when you implement this test. - $this->markTestIncomplete( - 'This test has not been implemented yet.' - ); - } - - /** - * @covers PharData::count - * @todo Implement testCount(). - */ - public function testCount() - { - // Remove the following lines when you implement this test. - $this->markTestIncomplete( - 'This test has not been implemented yet.' - ); - } - - /** - * @covers PharData::delete - * @todo Implement testDelete(). - */ - public function testDelete() - { - // Remove the following lines when you implement this test. - $this->markTestIncomplete( - 'This test has not been implemented yet.' - ); - } - - /** - * @covers PharData::delMetadata - * @todo Implement testDelMetadata(). - */ - public function testDelMetadata() - { - // Remove the following lines when you implement this test. - $this->markTestIncomplete( - 'This test has not been implemented yet.' - ); - } - - /** - * @covers PharData::extractTo - * @todo Implement testExtractTo(). - */ - public function testExtractTo() - { - // Remove the following lines when you implement this test. - $this->markTestIncomplete( - 'This test has not been implemented yet.' - ); - } - - /** - * @covers PharData::getAlias - * @todo Implement testGetAlias(). - */ - public function testGetAlias() - { - // Remove the following lines when you implement this test. - $this->markTestIncomplete( - 'This test has not been implemented yet.' - ); - } - - /** - * @covers PharData::getPath - * @todo Implement testGetPath(). - */ - public function testGetPath() - { - // Remove the following lines when you implement this test. - $this->markTestIncomplete( - 'This test has not been implemented yet.' - ); - } - - /** - * @covers PharData::getMetadata - * @todo Implement testGetMetadata(). - */ - public function testGetMetadata() - { - // Remove the following lines when you implement this test. - $this->markTestIncomplete( - 'This test has not been implemented yet.' - ); - } - - /** - * @covers PharData::getModified - * @todo Implement testGetModified(). - */ - public function testGetModified() - { - // Remove the following lines when you implement this test. - $this->markTestIncomplete( - 'This test has not been implemented yet.' - ); - } - - /** - * @covers PharData::getSignature - * @todo Implement testGetSignature(). - */ - public function testGetSignature() - { - // Remove the following lines when you implement this test. - $this->markTestIncomplete( - 'This test has not been implemented yet.' - ); - } - - /** - * @covers PharData::getStub - * @todo Implement testGetStub(). - */ - public function testGetStub() - { - // Remove the following lines when you implement this test. - $this->markTestIncomplete( - 'This test has not been implemented yet.' - ); - } - - /** - * @covers PharData::getVersion - * @todo Implement testGetVersion(). - */ - public function testGetVersion() - { - // Remove the following lines when you implement this test. - $this->markTestIncomplete( - 'This test has not been implemented yet.' - ); - } - - /** - * @covers PharData::hasMetadata - * @todo Implement testHasMetadata(). - */ - public function testHasMetadata() - { - // Remove the following lines when you implement this test. - $this->markTestIncomplete( - 'This test has not been implemented yet.' - ); - } - - /** - * @covers PharData::isBuffering - * @todo Implement testIsBuffering(). - */ - public function testIsBuffering() - { - // Remove the following lines when you implement this test. - $this->markTestIncomplete( - 'This test has not been implemented yet.' - ); - } - - /** - * @covers PharData::isCompressed - * @todo Implement testIsCompressed(). - */ - public function testIsCompressed() - { - // Remove the following lines when you implement this test. - $this->markTestIncomplete( - 'This test has not been implemented yet.' - ); - } - - /** - * @covers PharData::isFileFormat - * @todo Implement testIsFileFormat(). - */ - public function testIsFileFormat() - { - // Remove the following lines when you implement this test. - $this->markTestIncomplete( - 'This test has not been implemented yet.' - ); - } - - /** - * @covers PharData::isWritable - * @todo Implement testIsWritable(). - */ - public function testIsWritable() - { - // Remove the following lines when you implement this test. - $this->markTestIncomplete( - 'This test has not been implemented yet.' - ); - } - - /** - * @covers PharData::offsetExists - * @todo Implement testOffsetExists(). - */ - public function testOffsetExists() - { - // Remove the following lines when you implement this test. - $this->markTestIncomplete( - 'This test has not been implemented yet.' - ); - } - - /** - * @covers PharData::offsetGet - * @todo Implement testOffsetGet(). - */ - public function testOffsetGet() - { - // Remove the following lines when you implement this test. - $this->markTestIncomplete( - 'This test has not been implemented yet.' - ); - } - - /** - * @covers PharData::offsetSet - * @todo Implement testOffsetSet(). - */ - public function testOffsetSet() - { - // Remove the following lines when you implement this test. - $this->markTestIncomplete( - 'This test has not been implemented yet.' - ); - } - - /** - * @covers PharData::offsetUnset - * @todo Implement testOffsetUnset(). - */ - public function testOffsetUnset() - { - // Remove the following lines when you implement this test. - $this->markTestIncomplete( - 'This test has not been implemented yet.' - ); - } - - /** - * @covers PharData::setAlias - * @todo Implement testSetAlias(). - */ - public function testSetAlias() - { - // Remove the following lines when you implement this test. - $this->markTestIncomplete( - 'This test has not been implemented yet.' - ); - } - - /** - * @covers PharData::setDefaultStub - * @todo Implement testSetDefaultStub(). - */ - public function testSetDefaultStub() - { - // Remove the following lines when you implement this test. - $this->markTestIncomplete( - 'This test has not been implemented yet.' - ); - } - - /** - * @covers PharData::setMetadata - * @todo Implement testSetMetadata(). - */ - public function testSetMetadata() - { - // Remove the following lines when you implement this test. - $this->markTestIncomplete( - 'This test has not been implemented yet.' - ); - } - - /** - * @covers PharData::setSignatureAlgorithm - * @todo Implement testSetSignatureAlgorithm(). - */ - public function testSetSignatureAlgorithm() - { - // Remove the following lines when you implement this test. - $this->markTestIncomplete( - 'This test has not been implemented yet.' - ); - } - - /** - * @covers PharData::setStub - * @todo Implement testSetStub(). - */ - public function testSetStub() - { - // Remove the following lines when you implement this test. - $this->markTestIncomplete( - 'This test has not been implemented yet.' - ); - } - - /** - * @covers PharData::startBuffering - * @todo Implement testStartBuffering(). - */ - public function testStartBuffering() - { - // Remove the following lines when you implement this test. - $this->markTestIncomplete( - 'This test has not been implemented yet.' - ); - } - - /** - * @covers PharData::stopBuffering - * @todo Implement testStopBuffering(). - */ - public function testStopBuffering() - { - // Remove the following lines when you implement this test. - $this->markTestIncomplete( - 'This test has not been implemented yet.' - ); - } - - /** - * @covers PharData::apiVersion - * @todo Implement testApiVersion(). - */ - public function testApiVersion() - { - // Remove the following lines when you implement this test. - $this->markTestIncomplete( - 'This test has not been implemented yet.' - ); - } - - /** - * @covers PharData::canCompress - * @todo Implement testCanCompress(). - */ - public function testCanCompress() - { - // Remove the following lines when you implement this test. - $this->markTestIncomplete( - 'This test has not been implemented yet.' - ); - } - - /** - * @covers PharData::canWrite - * @todo Implement testCanWrite(). - */ - public function testCanWrite() - { - // Remove the following lines when you implement this test. - $this->markTestIncomplete( - 'This test has not been implemented yet.' - ); - } - - /** - * @covers PharData::createDefaultStub - * @todo Implement testCreateDefaultStub(). - */ - public function testCreateDefaultStub() - { - // Remove the following lines when you implement this test. - $this->markTestIncomplete( - 'This test has not been implemented yet.' - ); - } - - /** - * @covers PharData::getSupportedCompression - * @todo Implement testGetSupportedCompression(). - */ - public function testGetSupportedCompression() - { - // Remove the following lines when you implement this test. - $this->markTestIncomplete( - 'This test has not been implemented yet.' - ); - } - - /** - * @covers PharData::getSupportedSignatures - * @todo Implement testGetSupportedSignatures(). - */ - public function testGetSupportedSignatures() - { - // Remove the following lines when you implement this test. - $this->markTestIncomplete( - 'This test has not been implemented yet.' - ); - } - - /** - * @covers PharData::interceptFileFuncs - * @todo Implement testInterceptFileFuncs(). - */ - public function testInterceptFileFuncs() - { - // Remove the following lines when you implement this test. - $this->markTestIncomplete( - 'This test has not been implemented yet.' - ); - } - - /** - * @covers PharData::isValidPharFilename - * @todo Implement testIsValidPharFilename(). - */ - public function testIsValidPharFilename() - { - // Remove the following lines when you implement this test. - $this->markTestIncomplete( - 'This test has not been implemented yet.' - ); - } - - /** - * @covers PharData::loadPhar - * @todo Implement testLoadPhar(). - */ - public function testLoadPhar() - { - // Remove the following lines when you implement this test. - $this->markTestIncomplete( - 'This test has not been implemented yet.' - ); - } - - /** - * @covers PharData::mapPhar - * @todo Implement testMapPhar(). - */ - public function testMapPhar() - { - // Remove the following lines when you implement this test. - $this->markTestIncomplete( - 'This test has not been implemented yet.' - ); - } - - /** - * @covers PharData::running - * @todo Implement testRunning(). - */ - public function testRunning() - { - // Remove the following lines when you implement this test. - $this->markTestIncomplete( - 'This test has not been implemented yet.' - ); - } - - /** - * @covers PharData::mount - * @todo Implement testMount(). - */ - public function testMount() - { - // Remove the following lines when you implement this test. - $this->markTestIncomplete( - 'This test has not been implemented yet.' - ); - } - - /** - * @covers PharData::mungServer - * @todo Implement testMungServer(). - */ - public function testMungServer() - { - // Remove the following lines when you implement this test. - $this->markTestIncomplete( - 'This test has not been implemented yet.' - ); - } - - /** - * @covers PharData::unlinkArchive - * @todo Implement testUnlinkArchive(). - */ - public function testUnlinkArchive() - { - // Remove the following lines when you implement this test. - $this->markTestIncomplete( - 'This test has not been implemented yet.' - ); - } - - /** - * @covers PharData::webPhar - * @todo Implement testWebPhar(). - */ - public function testWebPhar() - { - // Remove the following lines when you implement this test. - $this->markTestIncomplete( - 'This test has not been implemented yet.' - ); - } -} diff --git a/tests/phpunit/classes/PharFileInfoTest.class.php b/tests/phpunit/classes/PharFileInfoTest.class.php deleted file mode 100644 index c477158c27..0000000000 --- a/tests/phpunit/classes/PharFileInfoTest.class.php +++ /dev/null @@ -1,196 +0,0 @@ -object = new PharFileInfo; - } - - /** - * Tears down the fixture, for example, closes a network connection. - * This method is called after a test is executed. - */ - protected function tearDown() - { - } - - /** - * @covers PharFileInfo::__destruct - * @todo Implement test__destruct(). - */ - public function test__destruct() - { - // Remove the following lines when you implement this test. - $this->markTestIncomplete( - 'This test has not been implemented yet.' - ); - } - - /** - * @covers PharFileInfo::chmod - * @todo Implement testChmod(). - */ - public function testChmod() - { - // Remove the following lines when you implement this test. - $this->markTestIncomplete( - 'This test has not been implemented yet.' - ); - } - - /** - * @covers PharFileInfo::compress - * @todo Implement testCompress(). - */ - public function testCompress() - { - // Remove the following lines when you implement this test. - $this->markTestIncomplete( - 'This test has not been implemented yet.' - ); - } - - /** - * @covers PharFileInfo::decompress - * @todo Implement testDecompress(). - */ - public function testDecompress() - { - // Remove the following lines when you implement this test. - $this->markTestIncomplete( - 'This test has not been implemented yet.' - ); - } - - /** - * @covers PharFileInfo::delMetadata - * @todo Implement testDelMetadata(). - */ - public function testDelMetadata() - { - // Remove the following lines when you implement this test. - $this->markTestIncomplete( - 'This test has not been implemented yet.' - ); - } - - /** - * @covers PharFileInfo::getCompressedSize - * @todo Implement testGetCompressedSize(). - */ - public function testGetCompressedSize() - { - // Remove the following lines when you implement this test. - $this->markTestIncomplete( - 'This test has not been implemented yet.' - ); - } - - /** - * @covers PharFileInfo::getCRC32 - * @todo Implement testGetCRC32(). - */ - public function testGetCRC32() - { - // Remove the following lines when you implement this test. - $this->markTestIncomplete( - 'This test has not been implemented yet.' - ); - } - - /** - * @covers PharFileInfo::getContent - * @todo Implement testGetContent(). - */ - public function testGetContent() - { - // Remove the following lines when you implement this test. - $this->markTestIncomplete( - 'This test has not been implemented yet.' - ); - } - - /** - * @covers PharFileInfo::getMetadata - * @todo Implement testGetMetadata(). - */ - public function testGetMetadata() - { - // Remove the following lines when you implement this test. - $this->markTestIncomplete( - 'This test has not been implemented yet.' - ); - } - - /** - * @covers PharFileInfo::getPharFlags - * @todo Implement testGetPharFlags(). - */ - public function testGetPharFlags() - { - // Remove the following lines when you implement this test. - $this->markTestIncomplete( - 'This test has not been implemented yet.' - ); - } - - /** - * @covers PharFileInfo::hasMetadata - * @todo Implement testHasMetadata(). - */ - public function testHasMetadata() - { - // Remove the following lines when you implement this test. - $this->markTestIncomplete( - 'This test has not been implemented yet.' - ); - } - - /** - * @covers PharFileInfo::isCompressed - * @todo Implement testIsCompressed(). - */ - public function testIsCompressed() - { - // Remove the following lines when you implement this test. - $this->markTestIncomplete( - 'This test has not been implemented yet.' - ); - } - - /** - * @covers PharFileInfo::isCRCChecked - * @todo Implement testIsCRCChecked(). - */ - public function testIsCRCChecked() - { - // Remove the following lines when you implement this test. - $this->markTestIncomplete( - 'This test has not been implemented yet.' - ); - } - - /** - * @covers PharFileInfo::setMetadata - * @todo Implement testSetMetadata(). - */ - public function testSetMetadata() - { - // Remove the following lines when you implement this test. - $this->markTestIncomplete( - 'This test has not been implemented yet.' - ); - } -} diff --git a/tests/phpunit/classes/PharTest.class.php b/tests/phpunit/classes/PharTest.class.php deleted file mode 100644 index bd11375ef1..0000000000 --- a/tests/phpunit/classes/PharTest.class.php +++ /dev/null @@ -1,688 +0,0 @@ -object = new Phar; - } - - /** - * Tears down the fixture, for example, closes a network connection. - * This method is called after a test is executed. - */ - protected function tearDown() - { - } - - /** - * @covers Phar::__destruct - * @todo Implement test__destruct(). - */ - public function test__destruct() - { - // Remove the following lines when you implement this test. - $this->markTestIncomplete( - 'This test has not been implemented yet.' - ); - } - - /** - * @covers Phar::addEmptyDir - * @todo Implement testAddEmptyDir(). - */ - public function testAddEmptyDir() - { - // Remove the following lines when you implement this test. - $this->markTestIncomplete( - 'This test has not been implemented yet.' - ); - } - - /** - * @covers Phar::addFile - * @todo Implement testAddFile(). - */ - public function testAddFile() - { - // Remove the following lines when you implement this test. - $this->markTestIncomplete( - 'This test has not been implemented yet.' - ); - } - - /** - * @covers Phar::addFromString - * @todo Implement testAddFromString(). - */ - public function testAddFromString() - { - // Remove the following lines when you implement this test. - $this->markTestIncomplete( - 'This test has not been implemented yet.' - ); - } - - /** - * @covers Phar::buildFromDirectory - * @todo Implement testBuildFromDirectory(). - */ - public function testBuildFromDirectory() - { - // Remove the following lines when you implement this test. - $this->markTestIncomplete( - 'This test has not been implemented yet.' - ); - } - - /** - * @covers Phar::buildFromIterator - * @todo Implement testBuildFromIterator(). - */ - public function testBuildFromIterator() - { - // Remove the following lines when you implement this test. - $this->markTestIncomplete( - 'This test has not been implemented yet.' - ); - } - - /** - * @covers Phar::compressFiles - * @todo Implement testCompressFiles(). - */ - public function testCompressFiles() - { - // Remove the following lines when you implement this test. - $this->markTestIncomplete( - 'This test has not been implemented yet.' - ); - } - - /** - * @covers Phar::decompressFiles - * @todo Implement testDecompressFiles(). - */ - public function testDecompressFiles() - { - // Remove the following lines when you implement this test. - $this->markTestIncomplete( - 'This test has not been implemented yet.' - ); - } - - /** - * @covers Phar::compress - * @todo Implement testCompress(). - */ - public function testCompress() - { - // Remove the following lines when you implement this test. - $this->markTestIncomplete( - 'This test has not been implemented yet.' - ); - } - - /** - * @covers Phar::decompress - * @todo Implement testDecompress(). - */ - public function testDecompress() - { - // Remove the following lines when you implement this test. - $this->markTestIncomplete( - 'This test has not been implemented yet.' - ); - } - - /** - * @covers Phar::convertToExecutable - * @todo Implement testConvertToExecutable(). - */ - public function testConvertToExecutable() - { - // Remove the following lines when you implement this test. - $this->markTestIncomplete( - 'This test has not been implemented yet.' - ); - } - - /** - * @covers Phar::convertToData - * @todo Implement testConvertToData(). - */ - public function testConvertToData() - { - // Remove the following lines when you implement this test. - $this->markTestIncomplete( - 'This test has not been implemented yet.' - ); - } - - /** - * @covers Phar::copy - * @todo Implement testCopy(). - */ - public function testCopy() - { - // Remove the following lines when you implement this test. - $this->markTestIncomplete( - 'This test has not been implemented yet.' - ); - } - - /** - * @covers Phar::count - * @todo Implement testCount(). - */ - public function testCount() - { - // Remove the following lines when you implement this test. - $this->markTestIncomplete( - 'This test has not been implemented yet.' - ); - } - - /** - * @covers Phar::delete - * @todo Implement testDelete(). - */ - public function testDelete() - { - // Remove the following lines when you implement this test. - $this->markTestIncomplete( - 'This test has not been implemented yet.' - ); - } - - /** - * @covers Phar::delMetadata - * @todo Implement testDelMetadata(). - */ - public function testDelMetadata() - { - // Remove the following lines when you implement this test. - $this->markTestIncomplete( - 'This test has not been implemented yet.' - ); - } - - /** - * @covers Phar::extractTo - * @todo Implement testExtractTo(). - */ - public function testExtractTo() - { - // Remove the following lines when you implement this test. - $this->markTestIncomplete( - 'This test has not been implemented yet.' - ); - } - - /** - * @covers Phar::getAlias - * @todo Implement testGetAlias(). - */ - public function testGetAlias() - { - // Remove the following lines when you implement this test. - $this->markTestIncomplete( - 'This test has not been implemented yet.' - ); - } - - /** - * @covers Phar::getPath - * @todo Implement testGetPath(). - */ - public function testGetPath() - { - // Remove the following lines when you implement this test. - $this->markTestIncomplete( - 'This test has not been implemented yet.' - ); - } - - /** - * @covers Phar::getMetadata - * @todo Implement testGetMetadata(). - */ - public function testGetMetadata() - { - // Remove the following lines when you implement this test. - $this->markTestIncomplete( - 'This test has not been implemented yet.' - ); - } - - /** - * @covers Phar::getModified - * @todo Implement testGetModified(). - */ - public function testGetModified() - { - // Remove the following lines when you implement this test. - $this->markTestIncomplete( - 'This test has not been implemented yet.' - ); - } - - /** - * @covers Phar::getSignature - * @todo Implement testGetSignature(). - */ - public function testGetSignature() - { - // Remove the following lines when you implement this test. - $this->markTestIncomplete( - 'This test has not been implemented yet.' - ); - } - - /** - * @covers Phar::getStub - * @todo Implement testGetStub(). - */ - public function testGetStub() - { - // Remove the following lines when you implement this test. - $this->markTestIncomplete( - 'This test has not been implemented yet.' - ); - } - - /** - * @covers Phar::getVersion - * @todo Implement testGetVersion(). - */ - public function testGetVersion() - { - // Remove the following lines when you implement this test. - $this->markTestIncomplete( - 'This test has not been implemented yet.' - ); - } - - /** - * @covers Phar::hasMetadata - * @todo Implement testHasMetadata(). - */ - public function testHasMetadata() - { - // Remove the following lines when you implement this test. - $this->markTestIncomplete( - 'This test has not been implemented yet.' - ); - } - - /** - * @covers Phar::isBuffering - * @todo Implement testIsBuffering(). - */ - public function testIsBuffering() - { - // Remove the following lines when you implement this test. - $this->markTestIncomplete( - 'This test has not been implemented yet.' - ); - } - - /** - * @covers Phar::isCompressed - * @todo Implement testIsCompressed(). - */ - public function testIsCompressed() - { - // Remove the following lines when you implement this test. - $this->markTestIncomplete( - 'This test has not been implemented yet.' - ); - } - - /** - * @covers Phar::isFileFormat - * @todo Implement testIsFileFormat(). - */ - public function testIsFileFormat() - { - // Remove the following lines when you implement this test. - $this->markTestIncomplete( - 'This test has not been implemented yet.' - ); - } - - /** - * @covers Phar::isWritable - * @todo Implement testIsWritable(). - */ - public function testIsWritable() - { - // Remove the following lines when you implement this test. - $this->markTestIncomplete( - 'This test has not been implemented yet.' - ); - } - - /** - * @covers Phar::offsetExists - * @todo Implement testOffsetExists(). - */ - public function testOffsetExists() - { - // Remove the following lines when you implement this test. - $this->markTestIncomplete( - 'This test has not been implemented yet.' - ); - } - - /** - * @covers Phar::offsetGet - * @todo Implement testOffsetGet(). - */ - public function testOffsetGet() - { - // Remove the following lines when you implement this test. - $this->markTestIncomplete( - 'This test has not been implemented yet.' - ); - } - - /** - * @covers Phar::offsetSet - * @todo Implement testOffsetSet(). - */ - public function testOffsetSet() - { - // Remove the following lines when you implement this test. - $this->markTestIncomplete( - 'This test has not been implemented yet.' - ); - } - - /** - * @covers Phar::offsetUnset - * @todo Implement testOffsetUnset(). - */ - public function testOffsetUnset() - { - // Remove the following lines when you implement this test. - $this->markTestIncomplete( - 'This test has not been implemented yet.' - ); - } - - /** - * @covers Phar::setAlias - * @todo Implement testSetAlias(). - */ - public function testSetAlias() - { - // Remove the following lines when you implement this test. - $this->markTestIncomplete( - 'This test has not been implemented yet.' - ); - } - - /** - * @covers Phar::setDefaultStub - * @todo Implement testSetDefaultStub(). - */ - public function testSetDefaultStub() - { - // Remove the following lines when you implement this test. - $this->markTestIncomplete( - 'This test has not been implemented yet.' - ); - } - - /** - * @covers Phar::setMetadata - * @todo Implement testSetMetadata(). - */ - public function testSetMetadata() - { - // Remove the following lines when you implement this test. - $this->markTestIncomplete( - 'This test has not been implemented yet.' - ); - } - - /** - * @covers Phar::setSignatureAlgorithm - * @todo Implement testSetSignatureAlgorithm(). - */ - public function testSetSignatureAlgorithm() - { - // Remove the following lines when you implement this test. - $this->markTestIncomplete( - 'This test has not been implemented yet.' - ); - } - - /** - * @covers Phar::setStub - * @todo Implement testSetStub(). - */ - public function testSetStub() - { - // Remove the following lines when you implement this test. - $this->markTestIncomplete( - 'This test has not been implemented yet.' - ); - } - - /** - * @covers Phar::startBuffering - * @todo Implement testStartBuffering(). - */ - public function testStartBuffering() - { - // Remove the following lines when you implement this test. - $this->markTestIncomplete( - 'This test has not been implemented yet.' - ); - } - - /** - * @covers Phar::stopBuffering - * @todo Implement testStopBuffering(). - */ - public function testStopBuffering() - { - // Remove the following lines when you implement this test. - $this->markTestIncomplete( - 'This test has not been implemented yet.' - ); - } - - /** - * @covers Phar::apiVersion - * @todo Implement testApiVersion(). - */ - public function testApiVersion() - { - // Remove the following lines when you implement this test. - $this->markTestIncomplete( - 'This test has not been implemented yet.' - ); - } - - /** - * @covers Phar::canCompress - * @todo Implement testCanCompress(). - */ - public function testCanCompress() - { - // Remove the following lines when you implement this test. - $this->markTestIncomplete( - 'This test has not been implemented yet.' - ); - } - - /** - * @covers Phar::canWrite - * @todo Implement testCanWrite(). - */ - public function testCanWrite() - { - // Remove the following lines when you implement this test. - $this->markTestIncomplete( - 'This test has not been implemented yet.' - ); - } - - /** - * @covers Phar::createDefaultStub - * @todo Implement testCreateDefaultStub(). - */ - public function testCreateDefaultStub() - { - // Remove the following lines when you implement this test. - $this->markTestIncomplete( - 'This test has not been implemented yet.' - ); - } - - /** - * @covers Phar::getSupportedCompression - * @todo Implement testGetSupportedCompression(). - */ - public function testGetSupportedCompression() - { - // Remove the following lines when you implement this test. - $this->markTestIncomplete( - 'This test has not been implemented yet.' - ); - } - - /** - * @covers Phar::getSupportedSignatures - * @todo Implement testGetSupportedSignatures(). - */ - public function testGetSupportedSignatures() - { - // Remove the following lines when you implement this test. - $this->markTestIncomplete( - 'This test has not been implemented yet.' - ); - } - - /** - * @covers Phar::interceptFileFuncs - * @todo Implement testInterceptFileFuncs(). - */ - public function testInterceptFileFuncs() - { - // Remove the following lines when you implement this test. - $this->markTestIncomplete( - 'This test has not been implemented yet.' - ); - } - - /** - * @covers Phar::isValidPharFilename - * @todo Implement testIsValidPharFilename(). - */ - public function testIsValidPharFilename() - { - // Remove the following lines when you implement this test. - $this->markTestIncomplete( - 'This test has not been implemented yet.' - ); - } - - /** - * @covers Phar::loadPhar - * @todo Implement testLoadPhar(). - */ - public function testLoadPhar() - { - // Remove the following lines when you implement this test. - $this->markTestIncomplete( - 'This test has not been implemented yet.' - ); - } - - /** - * @covers Phar::mapPhar - * @todo Implement testMapPhar(). - */ - public function testMapPhar() - { - // Remove the following lines when you implement this test. - $this->markTestIncomplete( - 'This test has not been implemented yet.' - ); - } - - /** - * @covers Phar::running - * @todo Implement testRunning(). - */ - public function testRunning() - { - // Remove the following lines when you implement this test. - $this->markTestIncomplete( - 'This test has not been implemented yet.' - ); - } - - /** - * @covers Phar::mount - * @todo Implement testMount(). - */ - public function testMount() - { - // Remove the following lines when you implement this test. - $this->markTestIncomplete( - 'This test has not been implemented yet.' - ); - } - - /** - * @covers Phar::mungServer - * @todo Implement testMungServer(). - */ - public function testMungServer() - { - // Remove the following lines when you implement this test. - $this->markTestIncomplete( - 'This test has not been implemented yet.' - ); - } - - /** - * @covers Phar::unlinkArchive - * @todo Implement testUnlinkArchive(). - */ - public function testUnlinkArchive() - { - // Remove the following lines when you implement this test. - $this->markTestIncomplete( - 'This test has not been implemented yet.' - ); - } - - /** - * @covers Phar::webPhar - * @todo Implement testWebPhar(). - */ - public function testWebPhar() - { - // Remove the following lines when you implement this test. - $this->markTestIncomplete( - 'This test has not been implemented yet.' - ); - } -} diff --git a/tests/phpunit/classes/RecursiveArrayIteratorTest.class.php b/tests/phpunit/classes/RecursiveArrayIteratorTest.class.php deleted file mode 100644 index 1b8ff43a19..0000000000 --- a/tests/phpunit/classes/RecursiveArrayIteratorTest.class.php +++ /dev/null @@ -1,52 +0,0 @@ -object = new RecursiveArrayIterator; - } - - /** - * Tears down the fixture, for example, closes a network connection. - * This method is called after a test is executed. - */ - protected function tearDown() - { - } - - /** - * @covers RecursiveArrayIterator::hasChildren - * @todo Implement testHasChildren(). - */ - public function testHasChildren() - { - // Remove the following lines when you implement this test. - $this->markTestIncomplete( - 'This test has not been implemented yet.' - ); - } - - /** - * @covers RecursiveArrayIterator::getChildren - * @todo Implement testGetChildren(). - */ - public function testGetChildren() - { - // Remove the following lines when you implement this test. - $this->markTestIncomplete( - 'This test has not been implemented yet.' - ); - } -} diff --git a/tests/phpunit/classes/RecursiveCachingIteratorTest.class.php b/tests/phpunit/classes/RecursiveCachingIteratorTest.class.php deleted file mode 100644 index 24a447d937..0000000000 --- a/tests/phpunit/classes/RecursiveCachingIteratorTest.class.php +++ /dev/null @@ -1,52 +0,0 @@ -object = new RecursiveCachingIterator; - } - - /** - * Tears down the fixture, for example, closes a network connection. - * This method is called after a test is executed. - */ - protected function tearDown() - { - } - - /** - * @covers RecursiveCachingIterator::hasChildren - * @todo Implement testHasChildren(). - */ - public function testHasChildren() - { - // Remove the following lines when you implement this test. - $this->markTestIncomplete( - 'This test has not been implemented yet.' - ); - } - - /** - * @covers RecursiveCachingIterator::getChildren - * @todo Implement testGetChildren(). - */ - public function testGetChildren() - { - // Remove the following lines when you implement this test. - $this->markTestIncomplete( - 'This test has not been implemented yet.' - ); - } -} diff --git a/tests/phpunit/classes/RecursiveDirectoryIteratorTest.class.php b/tests/phpunit/classes/RecursiveDirectoryIteratorTest.class.php deleted file mode 100644 index c064f46b00..0000000000 --- a/tests/phpunit/classes/RecursiveDirectoryIteratorTest.class.php +++ /dev/null @@ -1,76 +0,0 @@ -object = new RecursiveDirectoryIterator; - } - - /** - * Tears down the fixture, for example, closes a network connection. - * This method is called after a test is executed. - */ - protected function tearDown() - { - } - - /** - * @covers RecursiveDirectoryIterator::hasChildren - * @todo Implement testHasChildren(). - */ - public function testHasChildren() - { - // Remove the following lines when you implement this test. - $this->markTestIncomplete( - 'This test has not been implemented yet.' - ); - } - - /** - * @covers RecursiveDirectoryIterator::getChildren - * @todo Implement testGetChildren(). - */ - public function testGetChildren() - { - // Remove the following lines when you implement this test. - $this->markTestIncomplete( - 'This test has not been implemented yet.' - ); - } - - /** - * @covers RecursiveDirectoryIterator::getSubPath - * @todo Implement testGetSubPath(). - */ - public function testGetSubPath() - { - // Remove the following lines when you implement this test. - $this->markTestIncomplete( - 'This test has not been implemented yet.' - ); - } - - /** - * @covers RecursiveDirectoryIterator::getSubPathname - * @todo Implement testGetSubPathname(). - */ - public function testGetSubPathname() - { - // Remove the following lines when you implement this test. - $this->markTestIncomplete( - 'This test has not been implemented yet.' - ); - } -} diff --git a/tests/phpunit/classes/RecursiveIteratorIteratorTest.class.php b/tests/phpunit/classes/RecursiveIteratorIteratorTest.class.php deleted file mode 100644 index d369f5ebc3..0000000000 --- a/tests/phpunit/classes/RecursiveIteratorIteratorTest.class.php +++ /dev/null @@ -1,232 +0,0 @@ -object = new RecursiveIteratorIterator; - } - - /** - * Tears down the fixture, for example, closes a network connection. - * This method is called after a test is executed. - */ - protected function tearDown() - { - } - - /** - * @covers RecursiveIteratorIterator::rewind - * @todo Implement testRewind(). - */ - public function testRewind() - { - // Remove the following lines when you implement this test. - $this->markTestIncomplete( - 'This test has not been implemented yet.' - ); - } - - /** - * @covers RecursiveIteratorIterator::valid - * @todo Implement testValid(). - */ - public function testValid() - { - // Remove the following lines when you implement this test. - $this->markTestIncomplete( - 'This test has not been implemented yet.' - ); - } - - /** - * @covers RecursiveIteratorIterator::key - * @todo Implement testKey(). - */ - public function testKey() - { - // Remove the following lines when you implement this test. - $this->markTestIncomplete( - 'This test has not been implemented yet.' - ); - } - - /** - * @covers RecursiveIteratorIterator::current - * @todo Implement testCurrent(). - */ - public function testCurrent() - { - // Remove the following lines when you implement this test. - $this->markTestIncomplete( - 'This test has not been implemented yet.' - ); - } - - /** - * @covers RecursiveIteratorIterator::next - * @todo Implement testNext(). - */ - public function testNext() - { - // Remove the following lines when you implement this test. - $this->markTestIncomplete( - 'This test has not been implemented yet.' - ); - } - - /** - * @covers RecursiveIteratorIterator::getDepth - * @todo Implement testGetDepth(). - */ - public function testGetDepth() - { - // Remove the following lines when you implement this test. - $this->markTestIncomplete( - 'This test has not been implemented yet.' - ); - } - - /** - * @covers RecursiveIteratorIterator::getSubIterator - * @todo Implement testGetSubIterator(). - */ - public function testGetSubIterator() - { - // Remove the following lines when you implement this test. - $this->markTestIncomplete( - 'This test has not been implemented yet.' - ); - } - - /** - * @covers RecursiveIteratorIterator::getInnerIterator - * @todo Implement testGetInnerIterator(). - */ - public function testGetInnerIterator() - { - // Remove the following lines when you implement this test. - $this->markTestIncomplete( - 'This test has not been implemented yet.' - ); - } - - /** - * @covers RecursiveIteratorIterator::beginIteration - * @todo Implement testBeginIteration(). - */ - public function testBeginIteration() - { - // Remove the following lines when you implement this test. - $this->markTestIncomplete( - 'This test has not been implemented yet.' - ); - } - - /** - * @covers RecursiveIteratorIterator::endIteration - * @todo Implement testEndIteration(). - */ - public function testEndIteration() - { - // Remove the following lines when you implement this test. - $this->markTestIncomplete( - 'This test has not been implemented yet.' - ); - } - - /** - * @covers RecursiveIteratorIterator::callHasChildren - * @todo Implement testCallHasChildren(). - */ - public function testCallHasChildren() - { - // Remove the following lines when you implement this test. - $this->markTestIncomplete( - 'This test has not been implemented yet.' - ); - } - - /** - * @covers RecursiveIteratorIterator::callGetChildren - * @todo Implement testCallGetChildren(). - */ - public function testCallGetChildren() - { - // Remove the following lines when you implement this test. - $this->markTestIncomplete( - 'This test has not been implemented yet.' - ); - } - - /** - * @covers RecursiveIteratorIterator::beginChildren - * @todo Implement testBeginChildren(). - */ - public function testBeginChildren() - { - // Remove the following lines when you implement this test. - $this->markTestIncomplete( - 'This test has not been implemented yet.' - ); - } - - /** - * @covers RecursiveIteratorIterator::endChildren - * @todo Implement testEndChildren(). - */ - public function testEndChildren() - { - // Remove the following lines when you implement this test. - $this->markTestIncomplete( - 'This test has not been implemented yet.' - ); - } - - /** - * @covers RecursiveIteratorIterator::nextElement - * @todo Implement testNextElement(). - */ - public function testNextElement() - { - // Remove the following lines when you implement this test. - $this->markTestIncomplete( - 'This test has not been implemented yet.' - ); - } - - /** - * @covers RecursiveIteratorIterator::setMaxDepth - * @todo Implement testSetMaxDepth(). - */ - public function testSetMaxDepth() - { - // Remove the following lines when you implement this test. - $this->markTestIncomplete( - 'This test has not been implemented yet.' - ); - } - - /** - * @covers RecursiveIteratorIterator::getMaxDepth - * @todo Implement testGetMaxDepth(). - */ - public function testGetMaxDepth() - { - // Remove the following lines when you implement this test. - $this->markTestIncomplete( - 'This test has not been implemented yet.' - ); - } -} diff --git a/tests/phpunit/classes/RecursiveRegexIteratorTest.class.php b/tests/phpunit/classes/RecursiveRegexIteratorTest.class.php deleted file mode 100644 index 0eddd35c76..0000000000 --- a/tests/phpunit/classes/RecursiveRegexIteratorTest.class.php +++ /dev/null @@ -1,52 +0,0 @@ -object = new RecursiveRegexIterator; - } - - /** - * Tears down the fixture, for example, closes a network connection. - * This method is called after a test is executed. - */ - protected function tearDown() - { - } - - /** - * @covers RecursiveRegexIterator::hasChildren - * @todo Implement testHasChildren(). - */ - public function testHasChildren() - { - // Remove the following lines when you implement this test. - $this->markTestIncomplete( - 'This test has not been implemented yet.' - ); - } - - /** - * @covers RecursiveRegexIterator::getChildren - * @todo Implement testGetChildren(). - */ - public function testGetChildren() - { - // Remove the following lines when you implement this test. - $this->markTestIncomplete( - 'This test has not been implemented yet.' - ); - } -} diff --git a/tests/phpunit/classes/RecursiveTreeIteratorTest.class.php b/tests/phpunit/classes/RecursiveTreeIteratorTest.class.php deleted file mode 100644 index c72dc9be5d..0000000000 --- a/tests/phpunit/classes/RecursiveTreeIteratorTest.class.php +++ /dev/null @@ -1,220 +0,0 @@ -object = new RecursiveTreeIterator; - } - - /** - * Tears down the fixture, for example, closes a network connection. - * This method is called after a test is executed. - */ - protected function tearDown() - { - } - - /** - * @covers RecursiveTreeIterator::rewind - * @todo Implement testRewind(). - */ - public function testRewind() - { - // Remove the following lines when you implement this test. - $this->markTestIncomplete( - 'This test has not been implemented yet.' - ); - } - - /** - * @covers RecursiveTreeIterator::valid - * @todo Implement testValid(). - */ - public function testValid() - { - // Remove the following lines when you implement this test. - $this->markTestIncomplete( - 'This test has not been implemented yet.' - ); - } - - /** - * @covers RecursiveTreeIterator::key - * @todo Implement testKey(). - */ - public function testKey() - { - // Remove the following lines when you implement this test. - $this->markTestIncomplete( - 'This test has not been implemented yet.' - ); - } - - /** - * @covers RecursiveTreeIterator::current - * @todo Implement testCurrent(). - */ - public function testCurrent() - { - // Remove the following lines when you implement this test. - $this->markTestIncomplete( - 'This test has not been implemented yet.' - ); - } - - /** - * @covers RecursiveTreeIterator::next - * @todo Implement testNext(). - */ - public function testNext() - { - // Remove the following lines when you implement this test. - $this->markTestIncomplete( - 'This test has not been implemented yet.' - ); - } - - /** - * @covers RecursiveTreeIterator::beginIteration - * @todo Implement testBeginIteration(). - */ - public function testBeginIteration() - { - // Remove the following lines when you implement this test. - $this->markTestIncomplete( - 'This test has not been implemented yet.' - ); - } - - /** - * @covers RecursiveTreeIterator::endIteration - * @todo Implement testEndIteration(). - */ - public function testEndIteration() - { - // Remove the following lines when you implement this test. - $this->markTestIncomplete( - 'This test has not been implemented yet.' - ); - } - - /** - * @covers RecursiveTreeIterator::callHasChildren - * @todo Implement testCallHasChildren(). - */ - public function testCallHasChildren() - { - // Remove the following lines when you implement this test. - $this->markTestIncomplete( - 'This test has not been implemented yet.' - ); - } - - /** - * @covers RecursiveTreeIterator::callGetChildren - * @todo Implement testCallGetChildren(). - */ - public function testCallGetChildren() - { - // Remove the following lines when you implement this test. - $this->markTestIncomplete( - 'This test has not been implemented yet.' - ); - } - - /** - * @covers RecursiveTreeIterator::beginChildren - * @todo Implement testBeginChildren(). - */ - public function testBeginChildren() - { - // Remove the following lines when you implement this test. - $this->markTestIncomplete( - 'This test has not been implemented yet.' - ); - } - - /** - * @covers RecursiveTreeIterator::endChildren - * @todo Implement testEndChildren(). - */ - public function testEndChildren() - { - // Remove the following lines when you implement this test. - $this->markTestIncomplete( - 'This test has not been implemented yet.' - ); - } - - /** - * @covers RecursiveTreeIterator::nextElement - * @todo Implement testNextElement(). - */ - public function testNextElement() - { - // Remove the following lines when you implement this test. - $this->markTestIncomplete( - 'This test has not been implemented yet.' - ); - } - - /** - * @covers RecursiveTreeIterator::getPrefix - * @todo Implement testGetPrefix(). - */ - public function testGetPrefix() - { - // Remove the following lines when you implement this test. - $this->markTestIncomplete( - 'This test has not been implemented yet.' - ); - } - - /** - * @covers RecursiveTreeIterator::setPrefixPart - * @todo Implement testSetPrefixPart(). - */ - public function testSetPrefixPart() - { - // Remove the following lines when you implement this test. - $this->markTestIncomplete( - 'This test has not been implemented yet.' - ); - } - - /** - * @covers RecursiveTreeIterator::getEntry - * @todo Implement testGetEntry(). - */ - public function testGetEntry() - { - // Remove the following lines when you implement this test. - $this->markTestIncomplete( - 'This test has not been implemented yet.' - ); - } - - /** - * @covers RecursiveTreeIterator::getPostfix - * @todo Implement testGetPostfix(). - */ - public function testGetPostfix() - { - // Remove the following lines when you implement this test. - $this->markTestIncomplete( - 'This test has not been implemented yet.' - ); - } -} diff --git a/tests/phpunit/classes/RegexIteratorTest.class.php b/tests/phpunit/classes/RegexIteratorTest.class.php deleted file mode 100644 index b44f6718de..0000000000 --- a/tests/phpunit/classes/RegexIteratorTest.class.php +++ /dev/null @@ -1,124 +0,0 @@ -object = new RegexIterator; - } - - /** - * Tears down the fixture, for example, closes a network connection. - * This method is called after a test is executed. - */ - protected function tearDown() - { - } - - /** - * @covers RegexIterator::accept - * @todo Implement testAccept(). - */ - public function testAccept() - { - // Remove the following lines when you implement this test. - $this->markTestIncomplete( - 'This test has not been implemented yet.' - ); - } - - /** - * @covers RegexIterator::getMode - * @todo Implement testGetMode(). - */ - public function testGetMode() - { - // Remove the following lines when you implement this test. - $this->markTestIncomplete( - 'This test has not been implemented yet.' - ); - } - - /** - * @covers RegexIterator::setMode - * @todo Implement testSetMode(). - */ - public function testSetMode() - { - // Remove the following lines when you implement this test. - $this->markTestIncomplete( - 'This test has not been implemented yet.' - ); - } - - /** - * @covers RegexIterator::getFlags - * @todo Implement testGetFlags(). - */ - public function testGetFlags() - { - // Remove the following lines when you implement this test. - $this->markTestIncomplete( - 'This test has not been implemented yet.' - ); - } - - /** - * @covers RegexIterator::setFlags - * @todo Implement testSetFlags(). - */ - public function testSetFlags() - { - // Remove the following lines when you implement this test. - $this->markTestIncomplete( - 'This test has not been implemented yet.' - ); - } - - /** - * @covers RegexIterator::getPregFlags - * @todo Implement testGetPregFlags(). - */ - public function testGetPregFlags() - { - // Remove the following lines when you implement this test. - $this->markTestIncomplete( - 'This test has not been implemented yet.' - ); - } - - /** - * @covers RegexIterator::setPregFlags - * @todo Implement testSetPregFlags(). - */ - public function testSetPregFlags() - { - // Remove the following lines when you implement this test. - $this->markTestIncomplete( - 'This test has not been implemented yet.' - ); - } - - /** - * @covers RegexIterator::getRegex - * @todo Implement testGetRegex(). - */ - public function testGetRegex() - { - // Remove the following lines when you implement this test. - $this->markTestIncomplete( - 'This test has not been implemented yet.' - ); - } -} diff --git a/tests/phpunit/classes/ResourceBundleTest.class.php b/tests/phpunit/classes/ResourceBundleTest.class.php deleted file mode 100644 index 925f79817a..0000000000 --- a/tests/phpunit/classes/ResourceBundleTest.class.php +++ /dev/null @@ -1,100 +0,0 @@ -object = new ResourceBundle; - } - - /** - * Tears down the fixture, for example, closes a network connection. - * This method is called after a test is executed. - */ - protected function tearDown() - { - } - - /** - * @covers ResourceBundle::create - * @todo Implement testCreate(). - */ - public function testCreate() - { - // Remove the following lines when you implement this test. - $this->markTestIncomplete( - 'This test has not been implemented yet.' - ); - } - - /** - * @covers ResourceBundle::get - * @todo Implement testGet(). - */ - public function testGet() - { - // Remove the following lines when you implement this test. - $this->markTestIncomplete( - 'This test has not been implemented yet.' - ); - } - - /** - * @covers ResourceBundle::count - * @todo Implement testCount(). - */ - public function testCount() - { - // Remove the following lines when you implement this test. - $this->markTestIncomplete( - 'This test has not been implemented yet.' - ); - } - - /** - * @covers ResourceBundle::getLocales - * @todo Implement testGetLocales(). - */ - public function testGetLocales() - { - // Remove the following lines when you implement this test. - $this->markTestIncomplete( - 'This test has not been implemented yet.' - ); - } - - /** - * @covers ResourceBundle::getErrorCode - * @todo Implement testGetErrorCode(). - */ - public function testGetErrorCode() - { - // Remove the following lines when you implement this test. - $this->markTestIncomplete( - 'This test has not been implemented yet.' - ); - } - - /** - * @covers ResourceBundle::getErrorMessage - * @todo Implement testGetErrorMessage(). - */ - public function testGetErrorMessage() - { - // Remove the following lines when you implement this test. - $this->markTestIncomplete( - 'This test has not been implemented yet.' - ); - } -} diff --git a/tests/phpunit/classes/ResultSetTest.class.php b/tests/phpunit/classes/ResultSetTest.class.php deleted file mode 100644 index ad92b81925..0000000000 --- a/tests/phpunit/classes/ResultSetTest.class.php +++ /dev/null @@ -1,196 +0,0 @@ -object = new ResultSet; - } - - /** - * Tears down the fixture, for example, closes a network connection. - * This method is called after a test is executed. - */ - protected function tearDown() - { - } - - /** - * @covers ResultSet::create - * @todo Implement testCreate(). - */ - public function testCreate() - { - // Remove the following lines when you implement this test. - $this->markTestIncomplete( - 'This test has not been implemented yet.' - ); - } - - /** - * @covers ResultSet::sql - * @todo Implement testSql(). - */ - public function testSql() - { - // Remove the following lines when you implement this test. - $this->markTestIncomplete( - 'This test has not been implemented yet.' - ); - } - - /** - * @covers ResultSet::count - * @todo Implement testCount(). - */ - public function testCount() - { - // Remove the following lines when you implement this test. - $this->markTestIncomplete( - 'This test has not been implemented yet.' - ); - } - - /** - * @covers ResultSet::first - * @todo Implement testFirst(). - */ - public function testFirst() - { - // Remove the following lines when you implement this test. - $this->markTestIncomplete( - 'This test has not been implemented yet.' - ); - } - - /** - * @covers ResultSet::limit - * @todo Implement testLimit(). - */ - public function testLimit() - { - // Remove the following lines when you implement this test. - $this->markTestIncomplete( - 'This test has not been implemented yet.' - ); - } - - /** - * @covers ResultSet::orderby - * @todo Implement testOrderby(). - */ - public function testOrderby() - { - // Remove the following lines when you implement this test. - $this->markTestIncomplete( - 'This test has not been implemented yet.' - ); - } - - /** - * @covers ResultSet::return_type - * @todo Implement testReturn_type(). - */ - public function testReturn_type() - { - // Remove the following lines when you implement this test. - $this->markTestIncomplete( - 'This test has not been implemented yet.' - ); - } - - /** - * @covers ResultSet::current - * @todo Implement testCurrent(). - */ - public function testCurrent() - { - // Remove the following lines when you implement this test. - $this->markTestIncomplete( - 'This test has not been implemented yet.' - ); - } - - /** - * @covers ResultSet::key - * @todo Implement testKey(). - */ - public function testKey() - { - // Remove the following lines when you implement this test. - $this->markTestIncomplete( - 'This test has not been implemented yet.' - ); - } - - /** - * @covers ResultSet::next - * @todo Implement testNext(). - */ - public function testNext() - { - // Remove the following lines when you implement this test. - $this->markTestIncomplete( - 'This test has not been implemented yet.' - ); - } - - /** - * @covers ResultSet::rewind - * @todo Implement testRewind(). - */ - public function testRewind() - { - // Remove the following lines when you implement this test. - $this->markTestIncomplete( - 'This test has not been implemented yet.' - ); - } - - /** - * @covers ResultSet::valid - * @todo Implement testValid(). - */ - public function testValid() - { - // Remove the following lines when you implement this test. - $this->markTestIncomplete( - 'This test has not been implemented yet.' - ); - } - - /** - * @covers ResultSet::__clone - * @todo Implement test__clone(). - */ - public function test__clone() - { - // Remove the following lines when you implement this test. - $this->markTestIncomplete( - 'This test has not been implemented yet.' - ); - } - - /** - * @covers ResultSet::reset - * @todo Implement testReset(). - */ - public function testReset() - { - // Remove the following lines when you implement this test. - $this->markTestIncomplete( - 'This test has not been implemented yet.' - ); - } -} diff --git a/tests/phpunit/classes/SimpleXMLElementTest.class.php b/tests/phpunit/classes/SimpleXMLElementTest.class.php deleted file mode 100644 index 993401cbae..0000000000 --- a/tests/phpunit/classes/SimpleXMLElementTest.class.php +++ /dev/null @@ -1,184 +0,0 @@ -object = new SimpleXMLElement; - } - - /** - * Tears down the fixture, for example, closes a network connection. - * This method is called after a test is executed. - */ - protected function tearDown() - { - } - - /** - * @covers SimpleXMLElement::asXML - * @todo Implement testAsXML(). - */ - public function testAsXML() - { - // Remove the following lines when you implement this test. - $this->markTestIncomplete( - 'This test has not been implemented yet.' - ); - } - - /** - * @covers SimpleXMLElement::saveXML - * @todo Implement testSaveXML(). - */ - public function testSaveXML() - { - // Remove the following lines when you implement this test. - $this->markTestIncomplete( - 'This test has not been implemented yet.' - ); - } - - /** - * @covers SimpleXMLElement::xpath - * @todo Implement testXpath(). - */ - public function testXpath() - { - // Remove the following lines when you implement this test. - $this->markTestIncomplete( - 'This test has not been implemented yet.' - ); - } - - /** - * @covers SimpleXMLElement::registerXPathNamespace - * @todo Implement testRegisterXPathNamespace(). - */ - public function testRegisterXPathNamespace() - { - // Remove the following lines when you implement this test. - $this->markTestIncomplete( - 'This test has not been implemented yet.' - ); - } - - /** - * @covers SimpleXMLElement::attributes - * @todo Implement testAttributes(). - */ - public function testAttributes() - { - // Remove the following lines when you implement this test. - $this->markTestIncomplete( - 'This test has not been implemented yet.' - ); - } - - /** - * @covers SimpleXMLElement::children - * @todo Implement testChildren(). - */ - public function testChildren() - { - // Remove the following lines when you implement this test. - $this->markTestIncomplete( - 'This test has not been implemented yet.' - ); - } - - /** - * @covers SimpleXMLElement::getNamespaces - * @todo Implement testGetNamespaces(). - */ - public function testGetNamespaces() - { - // Remove the following lines when you implement this test. - $this->markTestIncomplete( - 'This test has not been implemented yet.' - ); - } - - /** - * @covers SimpleXMLElement::getDocNamespaces - * @todo Implement testGetDocNamespaces(). - */ - public function testGetDocNamespaces() - { - // Remove the following lines when you implement this test. - $this->markTestIncomplete( - 'This test has not been implemented yet.' - ); - } - - /** - * @covers SimpleXMLElement::getName - * @todo Implement testGetName(). - */ - public function testGetName() - { - // Remove the following lines when you implement this test. - $this->markTestIncomplete( - 'This test has not been implemented yet.' - ); - } - - /** - * @covers SimpleXMLElement::addChild - * @todo Implement testAddChild(). - */ - public function testAddChild() - { - // Remove the following lines when you implement this test. - $this->markTestIncomplete( - 'This test has not been implemented yet.' - ); - } - - /** - * @covers SimpleXMLElement::addAttribute - * @todo Implement testAddAttribute(). - */ - public function testAddAttribute() - { - // Remove the following lines when you implement this test. - $this->markTestIncomplete( - 'This test has not been implemented yet.' - ); - } - - /** - * @covers SimpleXMLElement::__toString - * @todo Implement test__toString(). - */ - public function test__toString() - { - // Remove the following lines when you implement this test. - $this->markTestIncomplete( - 'This test has not been implemented yet.' - ); - } - - /** - * @covers SimpleXMLElement::count - * @todo Implement testCount(). - */ - public function testCount() - { - // Remove the following lines when you implement this test. - $this->markTestIncomplete( - 'This test has not been implemented yet.' - ); - } -} diff --git a/tests/phpunit/classes/SimpleXMLIteratorTest.class.php b/tests/phpunit/classes/SimpleXMLIteratorTest.class.php deleted file mode 100644 index f452968052..0000000000 --- a/tests/phpunit/classes/SimpleXMLIteratorTest.class.php +++ /dev/null @@ -1,112 +0,0 @@ -object = new SimpleXMLIterator; - } - - /** - * Tears down the fixture, for example, closes a network connection. - * This method is called after a test is executed. - */ - protected function tearDown() - { - } - - /** - * @covers SimpleXMLIterator::rewind - * @todo Implement testRewind(). - */ - public function testRewind() - { - // Remove the following lines when you implement this test. - $this->markTestIncomplete( - 'This test has not been implemented yet.' - ); - } - - /** - * @covers SimpleXMLIterator::valid - * @todo Implement testValid(). - */ - public function testValid() - { - // Remove the following lines when you implement this test. - $this->markTestIncomplete( - 'This test has not been implemented yet.' - ); - } - - /** - * @covers SimpleXMLIterator::current - * @todo Implement testCurrent(). - */ - public function testCurrent() - { - // Remove the following lines when you implement this test. - $this->markTestIncomplete( - 'This test has not been implemented yet.' - ); - } - - /** - * @covers SimpleXMLIterator::key - * @todo Implement testKey(). - */ - public function testKey() - { - // Remove the following lines when you implement this test. - $this->markTestIncomplete( - 'This test has not been implemented yet.' - ); - } - - /** - * @covers SimpleXMLIterator::next - * @todo Implement testNext(). - */ - public function testNext() - { - // Remove the following lines when you implement this test. - $this->markTestIncomplete( - 'This test has not been implemented yet.' - ); - } - - /** - * @covers SimpleXMLIterator::hasChildren - * @todo Implement testHasChildren(). - */ - public function testHasChildren() - { - // Remove the following lines when you implement this test. - $this->markTestIncomplete( - 'This test has not been implemented yet.' - ); - } - - /** - * @covers SimpleXMLIterator::getChildren - * @todo Implement testGetChildren(). - */ - public function testGetChildren() - { - // Remove the following lines when you implement this test. - $this->markTestIncomplete( - 'This test has not been implemented yet.' - ); - } -} diff --git a/tests/phpunit/classes/mysqli_resultTest.class.php b/tests/phpunit/classes/mysqli_resultTest.class.php deleted file mode 100644 index 8d6d5b97d5..0000000000 --- a/tests/phpunit/classes/mysqli_resultTest.class.php +++ /dev/null @@ -1,172 +0,0 @@ -object = new mysqli_result; - } - - /** - * Tears down the fixture, for example, closes a network connection. - * This method is called after a test is executed. - */ - protected function tearDown() - { - } - - /** - * @covers mysqli_result::close - * @todo Implement testClose(). - */ - public function testClose() - { - // Remove the following lines when you implement this test. - $this->markTestIncomplete( - 'This test has not been implemented yet.' - ); - } - - /** - * @covers mysqli_result::free - * @todo Implement testFree(). - */ - public function testFree() - { - // Remove the following lines when you implement this test. - $this->markTestIncomplete( - 'This test has not been implemented yet.' - ); - } - - /** - * @covers mysqli_result::data_seek - * @todo Implement testData_seek(). - */ - public function testData_seek() - { - // Remove the following lines when you implement this test. - $this->markTestIncomplete( - 'This test has not been implemented yet.' - ); - } - - /** - * @covers mysqli_result::fetch_field - * @todo Implement testFetch_field(). - */ - public function testFetch_field() - { - // Remove the following lines when you implement this test. - $this->markTestIncomplete( - 'This test has not been implemented yet.' - ); - } - - /** - * @covers mysqli_result::fetch_fields - * @todo Implement testFetch_fields(). - */ - public function testFetch_fields() - { - // Remove the following lines when you implement this test. - $this->markTestIncomplete( - 'This test has not been implemented yet.' - ); - } - - /** - * @covers mysqli_result::fetch_field_direct - * @todo Implement testFetch_field_direct(). - */ - public function testFetch_field_direct() - { - // Remove the following lines when you implement this test. - $this->markTestIncomplete( - 'This test has not been implemented yet.' - ); - } - - /** - * @covers mysqli_result::fetch_array - * @todo Implement testFetch_array(). - */ - public function testFetch_array() - { - // Remove the following lines when you implement this test. - $this->markTestIncomplete( - 'This test has not been implemented yet.' - ); - } - - /** - * @covers mysqli_result::fetch_assoc - * @todo Implement testFetch_assoc(). - */ - public function testFetch_assoc() - { - // Remove the following lines when you implement this test. - $this->markTestIncomplete( - 'This test has not been implemented yet.' - ); - } - - /** - * @covers mysqli_result::fetch_object - * @todo Implement testFetch_object(). - */ - public function testFetch_object() - { - // Remove the following lines when you implement this test. - $this->markTestIncomplete( - 'This test has not been implemented yet.' - ); - } - - /** - * @covers mysqli_result::fetch_row - * @todo Implement testFetch_row(). - */ - public function testFetch_row() - { - // Remove the following lines when you implement this test. - $this->markTestIncomplete( - 'This test has not been implemented yet.' - ); - } - - /** - * @covers mysqli_result::field_seek - * @todo Implement testField_seek(). - */ - public function testField_seek() - { - // Remove the following lines when you implement this test. - $this->markTestIncomplete( - 'This test has not been implemented yet.' - ); - } - - /** - * @covers mysqli_result::free_result - * @todo Implement testFree_result(). - */ - public function testFree_result() - { - // Remove the following lines when you implement this test. - $this->markTestIncomplete( - 'This test has not been implemented yet.' - ); - } -} diff --git a/tests/phpunit/classes/mysqli_stmtTest.class.php b/tests/phpunit/classes/mysqli_stmtTest.class.php deleted file mode 100644 index 7f6b93fb0c..0000000000 --- a/tests/phpunit/classes/mysqli_stmtTest.class.php +++ /dev/null @@ -1,220 +0,0 @@ -object = new mysqli_stmt; - } - - /** - * Tears down the fixture, for example, closes a network connection. - * This method is called after a test is executed. - */ - protected function tearDown() - { - } - - /** - * @covers mysqli_stmt::attr_get - * @todo Implement testAttr_get(). - */ - public function testAttr_get() - { - // Remove the following lines when you implement this test. - $this->markTestIncomplete( - 'This test has not been implemented yet.' - ); - } - - /** - * @covers mysqli_stmt::attr_set - * @todo Implement testAttr_set(). - */ - public function testAttr_set() - { - // Remove the following lines when you implement this test. - $this->markTestIncomplete( - 'This test has not been implemented yet.' - ); - } - - /** - * @covers mysqli_stmt::bind_param - * @todo Implement testBind_param(). - */ - public function testBind_param() - { - // Remove the following lines when you implement this test. - $this->markTestIncomplete( - 'This test has not been implemented yet.' - ); - } - - /** - * @covers mysqli_stmt::bind_result - * @todo Implement testBind_result(). - */ - public function testBind_result() - { - // Remove the following lines when you implement this test. - $this->markTestIncomplete( - 'This test has not been implemented yet.' - ); - } - - /** - * @covers mysqli_stmt::close - * @todo Implement testClose(). - */ - public function testClose() - { - // Remove the following lines when you implement this test. - $this->markTestIncomplete( - 'This test has not been implemented yet.' - ); - } - - /** - * @covers mysqli_stmt::data_seek - * @todo Implement testData_seek(). - */ - public function testData_seek() - { - // Remove the following lines when you implement this test. - $this->markTestIncomplete( - 'This test has not been implemented yet.' - ); - } - - /** - * @covers mysqli_stmt::execute - * @todo Implement testExecute(). - */ - public function testExecute() - { - // Remove the following lines when you implement this test. - $this->markTestIncomplete( - 'This test has not been implemented yet.' - ); - } - - /** - * @covers mysqli_stmt::fetch - * @todo Implement testFetch(). - */ - public function testFetch() - { - // Remove the following lines when you implement this test. - $this->markTestIncomplete( - 'This test has not been implemented yet.' - ); - } - - /** - * @covers mysqli_stmt::get_warnings - * @todo Implement testGet_warnings(). - */ - public function testGet_warnings() - { - // Remove the following lines when you implement this test. - $this->markTestIncomplete( - 'This test has not been implemented yet.' - ); - } - - /** - * @covers mysqli_stmt::result_metadata - * @todo Implement testResult_metadata(). - */ - public function testResult_metadata() - { - // Remove the following lines when you implement this test. - $this->markTestIncomplete( - 'This test has not been implemented yet.' - ); - } - - /** - * @covers mysqli_stmt::num_rows - * @todo Implement testNum_rows(). - */ - public function testNum_rows() - { - // Remove the following lines when you implement this test. - $this->markTestIncomplete( - 'This test has not been implemented yet.' - ); - } - - /** - * @covers mysqli_stmt::send_long_data - * @todo Implement testSend_long_data(). - */ - public function testSend_long_data() - { - // Remove the following lines when you implement this test. - $this->markTestIncomplete( - 'This test has not been implemented yet.' - ); - } - - /** - * @covers mysqli_stmt::free_result - * @todo Implement testFree_result(). - */ - public function testFree_result() - { - // Remove the following lines when you implement this test. - $this->markTestIncomplete( - 'This test has not been implemented yet.' - ); - } - - /** - * @covers mysqli_stmt::reset - * @todo Implement testReset(). - */ - public function testReset() - { - // Remove the following lines when you implement this test. - $this->markTestIncomplete( - 'This test has not been implemented yet.' - ); - } - - /** - * @covers mysqli_stmt::prepare - * @todo Implement testPrepare(). - */ - public function testPrepare() - { - // Remove the following lines when you implement this test. - $this->markTestIncomplete( - 'This test has not been implemented yet.' - ); - } - - /** - * @covers mysqli_stmt::store_result - * @todo Implement testStore_result(). - */ - public function testStore_result() - { - // Remove the following lines when you implement this test. - $this->markTestIncomplete( - 'This test has not been implemented yet.' - ); - } -}