e72fff9cef
This avoids the performance overhead of the function call every time `dirname( __FILE__ )` was used instead of `__DIR__`. This commit also includes: * Removing unnecessary parentheses from `include`/`require` statements. These are language constructs, not function calls. * Replacing `include` statements for several files with `require_once`, for consistency: * `wp-admin/admin-header.php` * `wp-admin/admin-footer.php` * `wp-includes/version.php` Props ayeshrajans, desrosj, valentinbora, jrf, joostdevalk, netweb. Fixes #48082. git-svn-id: https://develop.svn.wordpress.org/trunk@47198 602fd350-edb4-49c9-b593-d223f7449a82
33 lines
965 B
PHP
33 lines
965 B
PHP
<?php
|
|
|
|
require_once dirname( __DIR__ ) . '/abstract-testcase.php';
|
|
|
|
/**
|
|
* Defines a basic fixture to run multiple tests.
|
|
*
|
|
* Resets the state of the WordPress installation before and after every test.
|
|
*
|
|
* Includes utility functions and assertions useful for testing WordPress.
|
|
*
|
|
* All WordPress unit tests should inherit from this class.
|
|
*/
|
|
class WP_UnitTestCase extends WP_UnitTestCase_Base {
|
|
|
|
/**
|
|
* Asserts that a condition is not false.
|
|
*
|
|
* This method has been backported from a more recent PHPUnit version, as tests running on PHP 5.2 use
|
|
* PHPUnit 3.6.x.
|
|
*
|
|
* @since 4.7.4
|
|
*
|
|
* @param bool $condition Condition to check.
|
|
* @param string $message Optional. Message to display when the assertion fails.
|
|
*
|
|
* @throws PHPUnit_Framework_AssertionFailedError
|
|
*/
|
|
public static function assertNotFalse( $condition, string $message = '' ): void {
|
|
self::assertThat( $condition, self::logicalNot( self::isFalse() ), $message );
|
|
}
|
|
}
|