Changeset 54402 for trunk/tests/phpunit/tests/user/countUsers.php
- Timestamp:
- 10/07/2022 01:02:07 AM (2 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/tests/phpunit/tests/user/countUsers.php
r52010 r54402 54 54 55 55 $this->assertSame( 8, $count['total_users'] ); 56 $this->assert Equals(56 $this->assertSameSetsWithIndex( 57 57 array( 58 58 'administrator' => 2, … … 134 134 135 135 $this->assertSame( 8, $count['total_users'] ); 136 $this->assert Equals(136 $this->assertSameSetsWithIndex( 137 137 array( 138 138 'administrator' => 2, … … 152 152 153 153 $this->assertSame( 2, $count['total_users'] ); 154 $this->assert Equals(154 $this->assertSameSetsWithIndex( 155 155 array( 156 156 'administrator' => 1, … … 167 167 168 168 $this->assertSame( 2, $count['total_users'] ); 169 $this->assert Equals(169 $this->assertSameSetsWithIndex( 170 170 array( 171 171 'administrator' => 1, … … 240 240 241 241 $this->assertSame( 3, $count['total_users'] ); 242 $this->assert Equals(242 $this->assertSameSetsWithIndex( 243 243 array( 244 244 'administrator' => 2,
Note: See TracChangeset
for help on using the changeset viewer.