Changeset 51367 for trunk/tests/phpunit/tests/comment.php
- Timestamp:
- 07/07/2021 10:32:56 AM (5 years ago)
- File:
-
- 1 edited
-
trunk/tests/phpunit/tests/comment.php (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/tests/phpunit/tests/comment.php
r50375 r51367 1266 1266 1267 1267 // Number of exported comments. 1268 $this->assert Same( 1, count( $actual['data'] ));1268 $this->assertCount( 1, $actual['data'] ); 1269 1269 1270 1270 // Number of exported comment properties. 1271 $this->assert Same( 8, count( $actual['data'][0]['data'] ));1271 $this->assertCount( 8, $actual['data'][0]['data'] ); 1272 1272 1273 1273 // Exported group. … … 1329 1329 1330 1330 // Number of exported comments. 1331 $this->assert Same( 1, count( $actual['data'] ));1331 $this->assertCount( 1, $actual['data'] ); 1332 1332 1333 1333 // Number of exported comment properties. 1334 $this->assert Same( 7, count( $actual['data'][0]['data'] ));1334 $this->assertCount( 7, $actual['data'][0]['data'] ); 1335 1335 } 1336 1336 … … 1360 1360 1361 1361 // Number of exported comments. 1362 $this->assert Same( 0, count( $actual['data'] ));1362 $this->assertCount( 0, $actual['data'] ); 1363 1363 } 1364 1364 }
Note: See TracChangeset
for help on using the changeset viewer.