Removed useless tests

1.9.x
Yannick Warnier 12 years ago
parent 2e211641e3
commit f3051f4ea1
  1. 3
      tests/phpunit/classes/AccessTokenTest.class.php
  2. 220
      tests/phpunit/classes/CachingIteratorTest.class.php
  3. 52
      tests/phpunit/classes/ClosureTest.class.php
  4. 184
      tests/phpunit/classes/CollatorTest.class.php
  5. 40
      tests/phpunit/classes/DOMAttrTest.class.php
  6. 244
      tests/phpunit/classes/DOMElementTest.class.php
  7. 76
      tests/phpunit/classes/DOMXPathTest.class.php
  8. 76
      tests/phpunit/classes/DateIntervalTest.class.php
  9. 100
      tests/phpunit/classes/DateTimeZoneTest.class.php
  10. 160
      tests/phpunit/classes/DirectoryIteratorTest.class.php
  11. 112
      tests/phpunit/classes/FileStoreTest.class.php
  12. 100
      tests/phpunit/classes/FilesystemIteratorTest.class.php
  13. 40
      tests/phpunit/classes/GlobIteratorTest.class.php
  14. 40
      tests/phpunit/classes/InfiniteIteratorTest.class.php
  15. 232
      tests/phpunit/classes/IntlDateFormatterTest.class.php
  16. 100
      tests/phpunit/classes/IteratorIteratorTest.class.php
  17. 124
      tests/phpunit/classes/LimitIteratorTest.class.php
  18. 148
      tests/phpunit/classes/MessageFormatterTest.class.php
  19. 100
      tests/phpunit/classes/NoRewindIteratorTest.class.php
  20. 220
      tests/phpunit/classes/NumberFormatterTest.class.php
  21. 220
      tests/phpunit/classes/PDOTest.class.php
  22. 40
      tests/phpunit/classes/ParentIteratorTest.class.php
  23. 688
      tests/phpunit/classes/PharDataTest.class.php
  24. 196
      tests/phpunit/classes/PharFileInfoTest.class.php
  25. 688
      tests/phpunit/classes/PharTest.class.php
  26. 52
      tests/phpunit/classes/RecursiveArrayIteratorTest.class.php
  27. 52
      tests/phpunit/classes/RecursiveCachingIteratorTest.class.php
  28. 76
      tests/phpunit/classes/RecursiveDirectoryIteratorTest.class.php
  29. 232
      tests/phpunit/classes/RecursiveIteratorIteratorTest.class.php
  30. 52
      tests/phpunit/classes/RecursiveRegexIteratorTest.class.php
  31. 220
      tests/phpunit/classes/RecursiveTreeIteratorTest.class.php
  32. 124
      tests/phpunit/classes/RegexIteratorTest.class.php
  33. 100
      tests/phpunit/classes/ResourceBundleTest.class.php
  34. 196
      tests/phpunit/classes/ResultSetTest.class.php
  35. 184
      tests/phpunit/classes/SimpleXMLElementTest.class.php
  36. 112
      tests/phpunit/classes/SimpleXMLIteratorTest.class.php
  37. 172
      tests/phpunit/classes/mysqli_resultTest.class.php
  38. 220
      tests/phpunit/classes/mysqli_stmtTest.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);
}
/**

@ -1,220 +0,0 @@
<?php
/**
* Generated by PHPUnit_SkeletonGenerator on 2013-01-07 at 09:22:50.
*/
class CachingIteratorTest extends PHPUnit_Framework_TestCase
{
/**
* @var CachingIterator
*/
protected $object;
/**
* Sets up the fixture, for example, opens a network connection.
* This method is called before a test is executed.
*/
protected function setUp()
{
$this->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.'
);
}
}

@ -1,52 +0,0 @@
<?php
/**
* Generated by PHPUnit_SkeletonGenerator on 2013-01-07 at 09:22:45.
*/
class ClosureTest extends PHPUnit_Framework_TestCase
{
/**
* @var Closure
*/
protected $object;
/**
* Sets up the fixture, for example, opens a network connection.
* This method is called before a test is executed.
*/
protected function setUp()
{
$this->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.'
);
}
}

@ -1,184 +0,0 @@
<?php
/**
* Generated by PHPUnit_SkeletonGenerator on 2013-01-07 at 09:22:56.
*/
class CollatorTest extends PHPUnit_Framework_TestCase
{
/**
* @var Collator
*/
protected $object;
/**
* Sets up the fixture, for example, opens a network connection.
* This method is called before a test is executed.
*/
protected function setUp()
{
$this->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.'
);
}
}

@ -1,40 +0,0 @@
<?php
/**
* Generated by PHPUnit_SkeletonGenerator on 2013-01-07 at 09:22:46.
*/
class DOMAttrTest extends PHPUnit_Framework_TestCase
{
/**
* @var DOMAttr
*/
protected $object;
/**
* Sets up the fixture, for example, opens a network connection.
* This method is called before a test is executed.
*/
protected function setUp()
{
$this->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.'
);
}
}

@ -1,244 +0,0 @@
<?php
/**
* Generated by PHPUnit_SkeletonGenerator on 2013-01-07 at 09:22:47.
*/
class DOMElementTest extends PHPUnit_Framework_TestCase
{
/**
* @var DOMElement
*/
protected $object;
/**
* Sets up the fixture, for example, opens a network connection.
* This method is called before a test is executed.
*/
protected function setUp()
{
$this->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.'
);
}
}

@ -1,76 +0,0 @@
<?php
/**
* Generated by PHPUnit_SkeletonGenerator on 2013-01-07 at 09:22:48.
*/
class DOMXPathTest extends PHPUnit_Framework_TestCase
{
/**
* @var DOMXPath
*/
protected $object;
/**
* Sets up the fixture, for example, opens a network connection.
* This method is called before a test is executed.
*/
protected function setUp()
{
$this->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.'
);
}
}

@ -1,76 +0,0 @@
<?php
/**
* Generated by PHPUnit_SkeletonGenerator on 2013-01-07 at 09:22:45.
*/
class DateIntervalTest extends PHPUnit_Framework_TestCase
{
/**
* @var DateInterval
*/
protected $object;
/**
* Sets up the fixture, for example, opens a network connection.
* This method is called before a test is executed.
*/
protected function setUp()
{
$this->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.'
);
}
}

@ -1,100 +0,0 @@
<?php
/**
* Generated by PHPUnit_SkeletonGenerator on 2013-01-07 at 09:22:45.
*/
class DateTimeZoneTest extends PHPUnit_Framework_TestCase
{
/**
* @var DateTimeZone
*/
protected $object;
/**
* Sets up the fixture, for example, opens a network connection.
* This method is called before a test is executed.
*/
protected function setUp()
{
$this->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.'
);
}
}

@ -1,160 +0,0 @@
<?php
/**
* Generated by PHPUnit_SkeletonGenerator on 2013-01-07 at 09:22:51.
*/
class DirectoryIteratorTest extends PHPUnit_Framework_TestCase
{
/**
* @var DirectoryIterator
*/
protected $object;
/**
* Sets up the fixture, for example, opens a network connection.
* This method is called before a test is executed.
*/
protected function setUp()
{
$this->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.'
);
}
}

@ -1,112 +0,0 @@
<?php
/**
* Generated by PHPUnit_SkeletonGenerator on 2012-10-01 at 14:44:08.
*/
class FileStoreTest extends PHPUnit_Framework_TestCase
{
/**
* @var FileStore
*/
protected $object;
/**
* Sets up the fixture, for example, opens a network connection.
* This method is called before a test is executed.
*/
protected function setUp()
{
$this->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.'
);
}
}

@ -1,100 +0,0 @@
<?php
/**
* Generated by PHPUnit_SkeletonGenerator on 2013-01-07 at 09:22:51.
*/
class FilesystemIteratorTest extends PHPUnit_Framework_TestCase
{
/**
* @var FilesystemIterator
*/
protected $object;
/**
* Sets up the fixture, for example, opens a network connection.
* This method is called before a test is executed.
*/
protected function setUp()
{
$this->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.'
);
}
}

@ -1,40 +0,0 @@
<?php
/**
* Generated by PHPUnit_SkeletonGenerator on 2013-01-07 at 09:22:51.
*/
class GlobIteratorTest extends PHPUnit_Framework_TestCase
{
/**
* @var GlobIterator
*/
protected $object;
/**
* Sets up the fixture, for example, opens a network connection.
* This method is called before a test is executed.
*/
protected function setUp()
{
$this->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.'
);
}
}

@ -1,40 +0,0 @@
<?php
/**
* Generated by PHPUnit_SkeletonGenerator on 2013-01-07 at 09:22:50.
*/
class InfiniteIteratorTest extends PHPUnit_Framework_TestCase
{
/**
* @var InfiniteIterator
*/
protected $object;
/**
* Sets up the fixture, for example, opens a network connection.
* This method is called before a test is executed.
*/
protected function setUp()
{
$this->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.'
);
}
}

@ -1,232 +0,0 @@
<?php
/**
* Generated by PHPUnit_SkeletonGenerator on 2013-01-07 at 09:22:56.
*/
class IntlDateFormatterTest extends PHPUnit_Framework_TestCase
{
/**
* @var IntlDateFormatter
*/
protected $object;
/**
* Sets up the fixture, for example, opens a network connection.
* This method is called before a test is executed.
*/
protected function setUp()
{
$this->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.'
);
}
}

@ -1,100 +0,0 @@
<?php
/**
* Generated by PHPUnit_SkeletonGenerator on 2013-01-07 at 09:22:49.
*/
class IteratorIteratorTest extends PHPUnit_Framework_TestCase
{
/**
* @var IteratorIterator
*/
protected $object;
/**
* Sets up the fixture, for example, opens a network connection.
* This method is called before a test is executed.
*/
protected function setUp()
{
$this->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.'
);
}
}

@ -1,124 +0,0 @@
<?php
/**
* Generated by PHPUnit_SkeletonGenerator on 2013-01-07 at 09:22:50.
*/
class LimitIteratorTest extends PHPUnit_Framework_TestCase
{
/**
* @var LimitIterator
*/
protected $object;
/**
* Sets up the fixture, for example, opens a network connection.
* This method is called before a test is executed.
*/
protected function setUp()
{
$this->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.'
);
}
}

@ -1,148 +0,0 @@
<?php
/**
* Generated by PHPUnit_SkeletonGenerator on 2013-01-07 at 09:22:56.
*/
class MessageFormatterTest extends PHPUnit_Framework_TestCase
{
/**
* @var MessageFormatter
*/
protected $object;
/**
* Sets up the fixture, for example, opens a network connection.
* This method is called before a test is executed.
*/
protected function setUp()
{
$this->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.'
);
}
}

@ -1,100 +0,0 @@
<?php
/**
* Generated by PHPUnit_SkeletonGenerator on 2013-01-07 at 09:22:50.
*/
class NoRewindIteratorTest extends PHPUnit_Framework_TestCase
{
/**
* @var NoRewindIterator
*/
protected $object;
/**
* Sets up the fixture, for example, opens a network connection.
* This method is called before a test is executed.
*/
protected function setUp()
{
$this->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.'
);
}
}

@ -1,220 +0,0 @@
<?php
/**
* Generated by PHPUnit_SkeletonGenerator on 2013-01-07 at 09:22:56.
*/
class NumberFormatterTest extends PHPUnit_Framework_TestCase
{
/**
* @var NumberFormatter
*/
protected $object;
/**
* Sets up the fixture, for example, opens a network connection.
* This method is called before a test is executed.
*/
protected function setUp()
{
$this->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.'
);
}
}

@ -1,220 +0,0 @@
<?php
/**
* Generated by PHPUnit_SkeletonGenerator on 2013-01-07 at 09:22:55.
*/
class PDOTest extends PHPUnit_Framework_TestCase
{
/**
* @var PDO
*/
protected $object;
/**
* Sets up the fixture, for example, opens a network connection.
* This method is called before a test is executed.
*/
protected function setUp()
{
$this->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.'
);
}
}

@ -1,40 +0,0 @@
<?php
/**
* Generated by PHPUnit_SkeletonGenerator on 2013-01-07 at 09:22:50.
*/
class ParentIteratorTest extends PHPUnit_Framework_TestCase
{
/**
* @var ParentIterator
*/
protected $object;
/**
* Sets up the fixture, for example, opens a network connection.
* This method is called before a test is executed.
*/
protected function setUp()
{
$this->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.'
);
}
}

@ -1,688 +0,0 @@
<?php
/**
* Generated by PHPUnit_SkeletonGenerator on 2013-01-07 at 09:22:56.
*/
class PharDataTest extends PHPUnit_Framework_TestCase
{
/**
* @var PharData
*/
protected $object;
/**
* Sets up the fixture, for example, opens a network connection.
* This method is called before a test is executed.
*/
protected function setUp()
{
$this->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.'
);
}
}

@ -1,196 +0,0 @@
<?php
/**
* Generated by PHPUnit_SkeletonGenerator on 2013-01-07 at 09:22:56.
*/
class PharFileInfoTest extends PHPUnit_Framework_TestCase
{
/**
* @var PharFileInfo
*/
protected $object;
/**
* Sets up the fixture, for example, opens a network connection.
* This method is called before a test is executed.
*/
protected function setUp()
{
$this->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.'
);
}
}

@ -1,688 +0,0 @@
<?php
/**
* Generated by PHPUnit_SkeletonGenerator on 2013-01-07 at 09:22:56.
*/
class PharTest extends PHPUnit_Framework_TestCase
{
/**
* @var Phar
*/
protected $object;
/**
* Sets up the fixture, for example, opens a network connection.
* This method is called before a test is executed.
*/
protected function setUp()
{
$this->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.'
);
}
}

@ -1,52 +0,0 @@
<?php
/**
* Generated by PHPUnit_SkeletonGenerator on 2013-01-07 at 09:22:51.
*/
class RecursiveArrayIteratorTest extends PHPUnit_Framework_TestCase
{
/**
* @var RecursiveArrayIterator
*/
protected $object;
/**
* Sets up the fixture, for example, opens a network connection.
* This method is called before a test is executed.
*/
protected function setUp()
{
$this->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.'
);
}
}

@ -1,52 +0,0 @@
<?php
/**
* Generated by PHPUnit_SkeletonGenerator on 2013-01-07 at 09:22:50.
*/
class RecursiveCachingIteratorTest extends PHPUnit_Framework_TestCase
{
/**
* @var RecursiveCachingIterator
*/
protected $object;
/**
* Sets up the fixture, for example, opens a network connection.
* This method is called before a test is executed.
*/
protected function setUp()
{
$this->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.'
);
}
}

@ -1,76 +0,0 @@
<?php
/**
* Generated by PHPUnit_SkeletonGenerator on 2013-01-07 at 09:22:51.
*/
class RecursiveDirectoryIteratorTest extends PHPUnit_Framework_TestCase
{
/**
* @var RecursiveDirectoryIterator
*/
protected $object;
/**
* Sets up the fixture, for example, opens a network connection.
* This method is called before a test is executed.
*/
protected function setUp()
{
$this->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.'
);
}
}

@ -1,232 +0,0 @@
<?php
/**
* Generated by PHPUnit_SkeletonGenerator on 2013-01-07 at 09:22:49.
*/
class RecursiveIteratorIteratorTest extends PHPUnit_Framework_TestCase
{
/**
* @var RecursiveIteratorIterator
*/
protected $object;
/**
* Sets up the fixture, for example, opens a network connection.
* This method is called before a test is executed.
*/
protected function setUp()
{
$this->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.'
);
}
}

@ -1,52 +0,0 @@
<?php
/**
* Generated by PHPUnit_SkeletonGenerator on 2013-01-07 at 09:22:50.
*/
class RecursiveRegexIteratorTest extends PHPUnit_Framework_TestCase
{
/**
* @var RecursiveRegexIterator
*/
protected $object;
/**
* Sets up the fixture, for example, opens a network connection.
* This method is called before a test is executed.
*/
protected function setUp()
{
$this->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.'
);
}
}

@ -1,220 +0,0 @@
<?php
/**
* Generated by PHPUnit_SkeletonGenerator on 2013-01-07 at 09:22:51.
*/
class RecursiveTreeIteratorTest extends PHPUnit_Framework_TestCase
{
/**
* @var RecursiveTreeIterator
*/
protected $object;
/**
* Sets up the fixture, for example, opens a network connection.
* This method is called before a test is executed.
*/
protected function setUp()
{
$this->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.'
);
}
}

@ -1,124 +0,0 @@
<?php
/**
* Generated by PHPUnit_SkeletonGenerator on 2013-01-07 at 09:22:50.
*/
class RegexIteratorTest extends PHPUnit_Framework_TestCase
{
/**
* @var RegexIterator
*/
protected $object;
/**
* Sets up the fixture, for example, opens a network connection.
* This method is called before a test is executed.
*/
protected function setUp()
{
$this->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.'
);
}
}

@ -1,100 +0,0 @@
<?php
/**
* Generated by PHPUnit_SkeletonGenerator on 2013-01-07 at 09:22:56.
*/
class ResourceBundleTest extends PHPUnit_Framework_TestCase
{
/**
* @var ResourceBundle
*/
protected $object;
/**
* Sets up the fixture, for example, opens a network connection.
* This method is called before a test is executed.
*/
protected function setUp()
{
$this->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.'
);
}
}

@ -1,196 +0,0 @@
<?php
/**
* Generated by PHPUnit_SkeletonGenerator on 2012-10-01 at 14:44:09.
*/
class ResultSetTest extends PHPUnit_Framework_TestCase
{
/**
* @var ResultSet
*/
protected $object;
/**
* Sets up the fixture, for example, opens a network connection.
* This method is called before a test is executed.
*/
protected function setUp()
{
$this->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.'
);
}
}

@ -1,184 +0,0 @@
<?php
/**
* Generated by PHPUnit_SkeletonGenerator on 2013-01-07 at 09:22:54.
*/
class SimpleXMLElementTest extends PHPUnit_Framework_TestCase
{
/**
* @var SimpleXMLElement
*/
protected $object;
/**
* Sets up the fixture, for example, opens a network connection.
* This method is called before a test is executed.
*/
protected function setUp()
{
$this->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.'
);
}
}

@ -1,112 +0,0 @@
<?php
/**
* Generated by PHPUnit_SkeletonGenerator on 2013-01-07 at 09:22:54.
*/
class SimpleXMLIteratorTest extends PHPUnit_Framework_TestCase
{
/**
* @var SimpleXMLIterator
*/
protected $object;
/**
* Sets up the fixture, for example, opens a network connection.
* This method is called before a test is executed.
*/
protected function setUp()
{
$this->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.'
);
}
}

@ -1,172 +0,0 @@
<?php
/**
* Generated by PHPUnit_SkeletonGenerator on 2013-01-07 at 09:22:58.
*/
class mysqli_resultTest extends PHPUnit_Framework_TestCase
{
/**
* @var mysqli_result
*/
protected $object;
/**
* Sets up the fixture, for example, opens a network connection.
* This method is called before a test is executed.
*/
protected function setUp()
{
$this->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.'
);
}
}

@ -1,220 +0,0 @@
<?php
/**
* Generated by PHPUnit_SkeletonGenerator on 2013-01-07 at 09:22:58.
*/
class mysqli_stmtTest extends PHPUnit_Framework_TestCase
{
/**
* @var mysqli_stmt
*/
protected $object;
/**
* Sets up the fixture, for example, opens a network connection.
* This method is called before a test is executed.
*/
protected function setUp()
{
$this->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.'
);
}
}
Loading…
Cancel
Save