- Timestamp:
- 08/13/2022 08:58:51 AM (2 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/tests/phpunit/testcases/groups/functions/groupsTotalGroupsForUser.php
r10445 r13314 10 10 */ 11 11 public function test_should_return_integer() { 12 $this->assertI nternalType( 'int',groups_total_groups_for_user( 123 ) );12 $this->assertIsInt( groups_total_groups_for_user( 123 ) ); 13 13 } 14 14 … … 23 23 wp_cache_set( 'bp_total_groups_for_user_123', '321', 'bp' ); 24 24 25 $this->assertI nternalType( 'int',groups_total_groups_for_user( 123 ) );25 $this->assertIsInt( groups_total_groups_for_user( 123 ) ); 26 26 } 27 27 }
Note: See TracChangeset
for help on using the changeset viewer.