Changeset 59745 for branches/6.7
- Timestamp:
- 01/30/2025 11:00:01 PM (3 months ago)
- Location:
- branches/6.7
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/6.7
-
branches/6.7/tests/phpunit/tests/atomlib/AtomParser_Parse_Test.php
r59062 r59745 69 69 $this->assertSame( 28, $atom->end_element_call_counter, sprintf( $msg, 'end_element' ) ); 70 70 $this->assertSame( 2, $atom->start_ns_call_counter, sprintf( $msg, 'start_ns' ) ); 71 $this->assert Same( 0, $atom->end_ns_call_counter, sprintf( $msg, 'end_ns' ) );72 $this->assert Same( 57, $atom->cdata_call_counter, sprintf( $msg, 'cdata' ) );73 $this->assert Same( 2, $atom->default_call_counter, sprintf( $msg, '_default' ) );71 $this->assertGreaterThanOrEqual( 0, $atom->end_ns_call_counter, sprintf( $msg, 'end_ns' ) ); 72 $this->assertGreaterThanOrEqual( 57, $atom->cdata_call_counter, sprintf( $msg, 'cdata' ) ); 73 $this->assertGreaterThanOrEqual( 2, $atom->default_call_counter, sprintf( $msg, '_default' ) ); 74 74 } 75 75 }
Note: See TracChangeset
for help on using the changeset viewer.