Changeset 39919 for trunk/tests/phpunit/includes/testcase.php
- Timestamp:
- 01/17/2017 03:39:36 AM (9 years ago)
- File:
-
- 1 edited
-
trunk/tests/phpunit/includes/testcase.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/tests/phpunit/includes/testcase.php
r39913 r39919 455 455 $this->assertNotEmpty( $sub_array ); 456 456 } 457 } 458 459 /** 460 * Asserts that a condition is not false. 461 * 462 * @param bool $condition 463 * @param string $message 464 * 465 * @throws PHPUnit_Framework_AssertionFailedError 466 */ 467 public static function assertNotFalse( $condition, $message = '' ) { 468 self::assertThat( $condition, self::logicalNot( self::isFalse() ), $message ); 457 469 } 458 470
Note: See TracChangeset
for help on using the changeset viewer.