Changeset 54402 for trunk/tests/phpunit/tests/import/parser.php
- Timestamp:
- 10/07/2022 01:02:07 AM (2 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/tests/phpunit/tests/import/parser.php
r53864 r54402 75 75 $this->assertIsArray( $result, $message ); 76 76 $this->assertSame( 'http://localhost/', $result['base_url'], $message ); 77 $this->assertEqual s(77 $this->assertEqualSetsWithIndex( 78 78 array( 79 79 'author_id' => 2, … … 87 87 $message 88 88 ); 89 $this->assertEqual s(89 $this->assertEqualSetsWithIndex( 90 90 array( 91 91 'term_id' => 3, … … 98 98 $message 99 99 ); 100 $this->assertEqual s(100 $this->assertEqualSetsWithIndex( 101 101 array( 102 102 'term_id' => 22, … … 108 108 $message 109 109 ); 110 $this->assertEqual s(110 $this->assertEqualSetsWithIndex( 111 111 array( 112 112 'term_id' => 40, … … 124 124 $this->assertCount( 19, $result['posts'][0], $message ); 125 125 $this->assertCount( 18, $result['posts'][1], $message ); 126 $this->assertEqual s(126 $this->assertEqualSetsWithIndex( 127 127 array( 128 128 array(
Note: See TracChangeset
for help on using the changeset viewer.