You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
532 lines
14 KiB
532 lines
14 KiB
<?php
|
|
/**
|
|
* Generated by PHPUnit_SkeletonGenerator on 2013-01-07 at 09:22:55.
|
|
*/
|
|
class XMLWriterTest extends PHPUnit_Framework_TestCase
|
|
{
|
|
/**
|
|
* @var XMLWriter
|
|
*/
|
|
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 XMLWriter;
|
|
}
|
|
|
|
/**
|
|
* Tears down the fixture, for example, closes a network connection.
|
|
* This method is called after a test is executed.
|
|
*/
|
|
protected function tearDown()
|
|
{
|
|
}
|
|
|
|
/**
|
|
* @covers XMLWriter::openUri
|
|
* @todo Implement testOpenUri().
|
|
*/
|
|
public function testOpenUri()
|
|
{
|
|
// Remove the following lines when you implement this test.
|
|
$this->markTestIncomplete(
|
|
'This test has not been implemented yet.'
|
|
);
|
|
}
|
|
|
|
/**
|
|
* @covers XMLWriter::openMemory
|
|
* @todo Implement testOpenMemory().
|
|
*/
|
|
public function testOpenMemory()
|
|
{
|
|
// Remove the following lines when you implement this test.
|
|
$this->markTestIncomplete(
|
|
'This test has not been implemented yet.'
|
|
);
|
|
}
|
|
|
|
/**
|
|
* @covers XMLWriter::setIndent
|
|
* @todo Implement testSetIndent().
|
|
*/
|
|
public function testSetIndent()
|
|
{
|
|
// Remove the following lines when you implement this test.
|
|
$this->markTestIncomplete(
|
|
'This test has not been implemented yet.'
|
|
);
|
|
}
|
|
|
|
/**
|
|
* @covers XMLWriter::setIndentString
|
|
* @todo Implement testSetIndentString().
|
|
*/
|
|
public function testSetIndentString()
|
|
{
|
|
// Remove the following lines when you implement this test.
|
|
$this->markTestIncomplete(
|
|
'This test has not been implemented yet.'
|
|
);
|
|
}
|
|
|
|
/**
|
|
* @covers XMLWriter::startComment
|
|
* @todo Implement testStartComment().
|
|
*/
|
|
public function testStartComment()
|
|
{
|
|
// Remove the following lines when you implement this test.
|
|
$this->markTestIncomplete(
|
|
'This test has not been implemented yet.'
|
|
);
|
|
}
|
|
|
|
/**
|
|
* @covers XMLWriter::endComment
|
|
* @todo Implement testEndComment().
|
|
*/
|
|
public function testEndComment()
|
|
{
|
|
// Remove the following lines when you implement this test.
|
|
$this->markTestIncomplete(
|
|
'This test has not been implemented yet.'
|
|
);
|
|
}
|
|
|
|
/**
|
|
* @covers XMLWriter::startAttribute
|
|
* @todo Implement testStartAttribute().
|
|
*/
|
|
public function testStartAttribute()
|
|
{
|
|
// Remove the following lines when you implement this test.
|
|
$this->markTestIncomplete(
|
|
'This test has not been implemented yet.'
|
|
);
|
|
}
|
|
|
|
/**
|
|
* @covers XMLWriter::endAttribute
|
|
* @todo Implement testEndAttribute().
|
|
*/
|
|
public function testEndAttribute()
|
|
{
|
|
// Remove the following lines when you implement this test.
|
|
$this->markTestIncomplete(
|
|
'This test has not been implemented yet.'
|
|
);
|
|
}
|
|
|
|
/**
|
|
* @covers XMLWriter::writeAttribute
|
|
* @todo Implement testWriteAttribute().
|
|
*/
|
|
public function testWriteAttribute()
|
|
{
|
|
// Remove the following lines when you implement this test.
|
|
$this->markTestIncomplete(
|
|
'This test has not been implemented yet.'
|
|
);
|
|
}
|
|
|
|
/**
|
|
* @covers XMLWriter::startAttributeNs
|
|
* @todo Implement testStartAttributeNs().
|
|
*/
|
|
public function testStartAttributeNs()
|
|
{
|
|
// Remove the following lines when you implement this test.
|
|
$this->markTestIncomplete(
|
|
'This test has not been implemented yet.'
|
|
);
|
|
}
|
|
|
|
/**
|
|
* @covers XMLWriter::writeAttributeNs
|
|
* @todo Implement testWriteAttributeNs().
|
|
*/
|
|
public function testWriteAttributeNs()
|
|
{
|
|
// Remove the following lines when you implement this test.
|
|
$this->markTestIncomplete(
|
|
'This test has not been implemented yet.'
|
|
);
|
|
}
|
|
|
|
/**
|
|
* @covers XMLWriter::startElement
|
|
* @todo Implement testStartElement().
|
|
*/
|
|
public function testStartElement()
|
|
{
|
|
// Remove the following lines when you implement this test.
|
|
$this->markTestIncomplete(
|
|
'This test has not been implemented yet.'
|
|
);
|
|
}
|
|
|
|
/**
|
|
* @covers XMLWriter::endElement
|
|
* @todo Implement testEndElement().
|
|
*/
|
|
public function testEndElement()
|
|
{
|
|
// Remove the following lines when you implement this test.
|
|
$this->markTestIncomplete(
|
|
'This test has not been implemented yet.'
|
|
);
|
|
}
|
|
|
|
/**
|
|
* @covers XMLWriter::fullEndElement
|
|
* @todo Implement testFullEndElement().
|
|
*/
|
|
public function testFullEndElement()
|
|
{
|
|
// Remove the following lines when you implement this test.
|
|
$this->markTestIncomplete(
|
|
'This test has not been implemented yet.'
|
|
);
|
|
}
|
|
|
|
/**
|
|
* @covers XMLWriter::startElementNs
|
|
* @todo Implement testStartElementNs().
|
|
*/
|
|
public function testStartElementNs()
|
|
{
|
|
// Remove the following lines when you implement this test.
|
|
$this->markTestIncomplete(
|
|
'This test has not been implemented yet.'
|
|
);
|
|
}
|
|
|
|
/**
|
|
* @covers XMLWriter::writeElement
|
|
* @todo Implement testWriteElement().
|
|
*/
|
|
public function testWriteElement()
|
|
{
|
|
// Remove the following lines when you implement this test.
|
|
$this->markTestIncomplete(
|
|
'This test has not been implemented yet.'
|
|
);
|
|
}
|
|
|
|
/**
|
|
* @covers XMLWriter::writeElementNs
|
|
* @todo Implement testWriteElementNs().
|
|
*/
|
|
public function testWriteElementNs()
|
|
{
|
|
// Remove the following lines when you implement this test.
|
|
$this->markTestIncomplete(
|
|
'This test has not been implemented yet.'
|
|
);
|
|
}
|
|
|
|
/**
|
|
* @covers XMLWriter::startPi
|
|
* @todo Implement testStartPi().
|
|
*/
|
|
public function testStartPi()
|
|
{
|
|
// Remove the following lines when you implement this test.
|
|
$this->markTestIncomplete(
|
|
'This test has not been implemented yet.'
|
|
);
|
|
}
|
|
|
|
/**
|
|
* @covers XMLWriter::endPi
|
|
* @todo Implement testEndPi().
|
|
*/
|
|
public function testEndPi()
|
|
{
|
|
// Remove the following lines when you implement this test.
|
|
$this->markTestIncomplete(
|
|
'This test has not been implemented yet.'
|
|
);
|
|
}
|
|
|
|
/**
|
|
* @covers XMLWriter::writePi
|
|
* @todo Implement testWritePi().
|
|
*/
|
|
public function testWritePi()
|
|
{
|
|
// Remove the following lines when you implement this test.
|
|
$this->markTestIncomplete(
|
|
'This test has not been implemented yet.'
|
|
);
|
|
}
|
|
|
|
/**
|
|
* @covers XMLWriter::startCdata
|
|
* @todo Implement testStartCdata().
|
|
*/
|
|
public function testStartCdata()
|
|
{
|
|
// Remove the following lines when you implement this test.
|
|
$this->markTestIncomplete(
|
|
'This test has not been implemented yet.'
|
|
);
|
|
}
|
|
|
|
/**
|
|
* @covers XMLWriter::endCdata
|
|
* @todo Implement testEndCdata().
|
|
*/
|
|
public function testEndCdata()
|
|
{
|
|
// Remove the following lines when you implement this test.
|
|
$this->markTestIncomplete(
|
|
'This test has not been implemented yet.'
|
|
);
|
|
}
|
|
|
|
/**
|
|
* @covers XMLWriter::writeCdata
|
|
* @todo Implement testWriteCdata().
|
|
*/
|
|
public function testWriteCdata()
|
|
{
|
|
// Remove the following lines when you implement this test.
|
|
$this->markTestIncomplete(
|
|
'This test has not been implemented yet.'
|
|
);
|
|
}
|
|
|
|
/**
|
|
* @covers XMLWriter::text
|
|
* @todo Implement testText().
|
|
*/
|
|
public function testText()
|
|
{
|
|
// Remove the following lines when you implement this test.
|
|
$this->markTestIncomplete(
|
|
'This test has not been implemented yet.'
|
|
);
|
|
}
|
|
|
|
/**
|
|
* @covers XMLWriter::writeRaw
|
|
* @todo Implement testWriteRaw().
|
|
*/
|
|
public function testWriteRaw()
|
|
{
|
|
// Remove the following lines when you implement this test.
|
|
$this->markTestIncomplete(
|
|
'This test has not been implemented yet.'
|
|
);
|
|
}
|
|
|
|
/**
|
|
* @covers XMLWriter::startDocument
|
|
* @todo Implement testStartDocument().
|
|
*/
|
|
public function testStartDocument()
|
|
{
|
|
// Remove the following lines when you implement this test.
|
|
$this->markTestIncomplete(
|
|
'This test has not been implemented yet.'
|
|
);
|
|
}
|
|
|
|
/**
|
|
* @covers XMLWriter::endDocument
|
|
* @todo Implement testEndDocument().
|
|
*/
|
|
public function testEndDocument()
|
|
{
|
|
// Remove the following lines when you implement this test.
|
|
$this->markTestIncomplete(
|
|
'This test has not been implemented yet.'
|
|
);
|
|
}
|
|
|
|
/**
|
|
* @covers XMLWriter::writeComment
|
|
* @todo Implement testWriteComment().
|
|
*/
|
|
public function testWriteComment()
|
|
{
|
|
// Remove the following lines when you implement this test.
|
|
$this->markTestIncomplete(
|
|
'This test has not been implemented yet.'
|
|
);
|
|
}
|
|
|
|
/**
|
|
* @covers XMLWriter::startDtd
|
|
* @todo Implement testStartDtd().
|
|
*/
|
|
public function testStartDtd()
|
|
{
|
|
// Remove the following lines when you implement this test.
|
|
$this->markTestIncomplete(
|
|
'This test has not been implemented yet.'
|
|
);
|
|
}
|
|
|
|
/**
|
|
* @covers XMLWriter::endDtd
|
|
* @todo Implement testEndDtd().
|
|
*/
|
|
public function testEndDtd()
|
|
{
|
|
// Remove the following lines when you implement this test.
|
|
$this->markTestIncomplete(
|
|
'This test has not been implemented yet.'
|
|
);
|
|
}
|
|
|
|
/**
|
|
* @covers XMLWriter::writeDtd
|
|
* @todo Implement testWriteDtd().
|
|
*/
|
|
public function testWriteDtd()
|
|
{
|
|
// Remove the following lines when you implement this test.
|
|
$this->markTestIncomplete(
|
|
'This test has not been implemented yet.'
|
|
);
|
|
}
|
|
|
|
/**
|
|
* @covers XMLWriter::startDtdElement
|
|
* @todo Implement testStartDtdElement().
|
|
*/
|
|
public function testStartDtdElement()
|
|
{
|
|
// Remove the following lines when you implement this test.
|
|
$this->markTestIncomplete(
|
|
'This test has not been implemented yet.'
|
|
);
|
|
}
|
|
|
|
/**
|
|
* @covers XMLWriter::endDtdElement
|
|
* @todo Implement testEndDtdElement().
|
|
*/
|
|
public function testEndDtdElement()
|
|
{
|
|
// Remove the following lines when you implement this test.
|
|
$this->markTestIncomplete(
|
|
'This test has not been implemented yet.'
|
|
);
|
|
}
|
|
|
|
/**
|
|
* @covers XMLWriter::writeDtdElement
|
|
* @todo Implement testWriteDtdElement().
|
|
*/
|
|
public function testWriteDtdElement()
|
|
{
|
|
// Remove the following lines when you implement this test.
|
|
$this->markTestIncomplete(
|
|
'This test has not been implemented yet.'
|
|
);
|
|
}
|
|
|
|
/**
|
|
* @covers XMLWriter::startDtdAttlist
|
|
* @todo Implement testStartDtdAttlist().
|
|
*/
|
|
public function testStartDtdAttlist()
|
|
{
|
|
// Remove the following lines when you implement this test.
|
|
$this->markTestIncomplete(
|
|
'This test has not been implemented yet.'
|
|
);
|
|
}
|
|
|
|
/**
|
|
* @covers XMLWriter::endDtdAttlist
|
|
* @todo Implement testEndDtdAttlist().
|
|
*/
|
|
public function testEndDtdAttlist()
|
|
{
|
|
// Remove the following lines when you implement this test.
|
|
$this->markTestIncomplete(
|
|
'This test has not been implemented yet.'
|
|
);
|
|
}
|
|
|
|
/**
|
|
* @covers XMLWriter::writeDtdAttlist
|
|
* @todo Implement testWriteDtdAttlist().
|
|
*/
|
|
public function testWriteDtdAttlist()
|
|
{
|
|
// Remove the following lines when you implement this test.
|
|
$this->markTestIncomplete(
|
|
'This test has not been implemented yet.'
|
|
);
|
|
}
|
|
|
|
/**
|
|
* @covers XMLWriter::startDtdEntity
|
|
* @todo Implement testStartDtdEntity().
|
|
*/
|
|
public function testStartDtdEntity()
|
|
{
|
|
// Remove the following lines when you implement this test.
|
|
$this->markTestIncomplete(
|
|
'This test has not been implemented yet.'
|
|
);
|
|
}
|
|
|
|
/**
|
|
* @covers XMLWriter::endDtdEntity
|
|
* @todo Implement testEndDtdEntity().
|
|
*/
|
|
public function testEndDtdEntity()
|
|
{
|
|
// Remove the following lines when you implement this test.
|
|
$this->markTestIncomplete(
|
|
'This test has not been implemented yet.'
|
|
);
|
|
}
|
|
|
|
/**
|
|
* @covers XMLWriter::writeDtdEntity
|
|
* @todo Implement testWriteDtdEntity().
|
|
*/
|
|
public function testWriteDtdEntity()
|
|
{
|
|
// Remove the following lines when you implement this test.
|
|
$this->markTestIncomplete(
|
|
'This test has not been implemented yet.'
|
|
);
|
|
}
|
|
|
|
/**
|
|
* @covers XMLWriter::outputMemory
|
|
* @todo Implement testOutputMemory().
|
|
*/
|
|
public function testOutputMemory()
|
|
{
|
|
// Remove the following lines when you implement this test.
|
|
$this->markTestIncomplete(
|
|
'This test has not been implemented yet.'
|
|
);
|
|
}
|
|
|
|
/**
|
|
* @covers XMLWriter::flush
|
|
* @todo Implement testFlush().
|
|
*/
|
|
public function testFlush()
|
|
{
|
|
// Remove the following lines when you implement this test.
|
|
$this->markTestIncomplete(
|
|
'This test has not been implemented yet.'
|
|
);
|
|
}
|
|
}
|
|
|