summaryrefslogtreecommitdiff
path: root/tests/unit/Xml/TXmlElementTest.php
blob: eec22b1f505d041fcd44266cec672b95d631f968 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
<?php
require_once dirname(__FILE__).'/../phpunit.php';

Prado::using('System.Xml.TXmlDocument');

/**
 * @package System.Xml
 */
class TXmlElementTest extends PHPUnit_Framework_TestCase {

  public function setUp() {
  }

  public function testConstruct() {
    throw new PHPUnit_Framework_IncompleteTestError();
  }

  public function testSetParent() {
    throw new PHPUnit_Framework_IncompleteTestError();
  }

  public function testSetTagName() {
    throw new PHPUnit_Framework_IncompleteTestError();
  }

  public function testSetValue() {
    throw new PHPUnit_Framework_IncompleteTestError();
  }

  public function testSetAttribute() {
    throw new PHPUnit_Framework_IncompleteTestError();
  }

  public function testGetElementByTagName() {
    throw new PHPUnit_Framework_IncompleteTestError();
  }

  public function testGetElementsByTagName() {
    throw new PHPUnit_Framework_IncompleteTestError();
  }

  public function testToString() {
    throw new PHPUnit_Framework_IncompleteTestError();
  }
}
?>