Changeset 17 for php/trunk/unittest/rdfa_serialize/unittest.php
- Timestamp:
- Jul 12, 2011, 10:56:58 AM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
php/trunk/unittest/rdfa_serialize/unittest.php
r7 r17 67 67 68 68 // this call must fail , returning false 69 $doc = $this->rdfaData-> serialize( 'dummy');69 $doc = $this->rdfaData->_serialize( 'dummy'); 70 70 $this->assertEquals( ($doc === false), true); 71 71 72 72 // these call must return a proper serialization 73 73 foreach ( $validTypes as $type) { 74 $doc = $this->rdfaData-> serialize( $type);74 $doc = $this->rdfaData->_serialize( $type); 75 75 $this->assertEquals( ($doc !== false), true); 76 76 $this->assertEquals( (strlen($doc) > 0), true);
Note:
See TracChangeset
for help on using the changeset viewer.