Changeset 51335 for trunk/tests/phpunit/includes/abstract-testcase.php
- Timestamp:
- 07/06/2021 12:25:53 PM (4 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/tests/phpunit/includes/abstract-testcase.php
r51135 r51335 761 761 */ 762 762 public function assertNonEmptyMultidimensionalArray( $array ) { 763 $this->assert True( is_array( $array ));763 $this->assertIsArray( $array ); 764 764 $this->assertNotEmpty( $array ); 765 765 766 766 foreach ( $array as $sub_array ) { 767 $this->assert True( is_array( $sub_array ));767 $this->assertIsArray( $sub_array ); 768 768 $this->assertNotEmpty( $sub_array ); 769 769 }
Note: See TracChangeset
for help on using the changeset viewer.