Files
wordpress-develop/tests/phpunit/tests/load/wpIsIniValueChangeable.php
Tonya Mork 40ac5de838 Coding Standards: Add visibility to methods in tests/phpunit/tests/.
Adds a `public` visibility to test fixtures, tests, data providers, and callbacks methods.

Adds a `private` visibility to helper methods within test classes.

Renames callbacks and helpers that previously started with a `_` prefix. Why? For consistency and to leverage using the method visibility. Further naming standardizations is beyond the scope of this commit.

Props costdev, jrf, hellofromTonya.
Fixes #54177.

git-svn-id: https://develop.svn.wordpress.org/trunk@52010 602fd350-edb4-49c9-b593-d223f7449a82
2021-11-04 15:22:47 +00:00

50 lines
1.4 KiB
PHP

<?php
/**
* Tests for wp_is_ini_value_changeable().
*
* @group load.php
* @covers ::wp_is_ini_value_changeable
*/
class Tests_Load_wpIsIniValueChangeable extends WP_UnitTestCase {
/**
* Tests the determining of the changeability of a PHP ini value.
*
* @ticket 32075
*
* @dataProvider data_wp_is_ini_value_changeable
*
* @param string $setting The setting passed to wp_is_ini_value_changeable().
* @param bool $expected The expected output of wp_convert_hr_to_bytes().
*/
public function test_wp_is_ini_value_changeable( $setting, $expected ) {
$this->assertSame( $expected, wp_is_ini_value_changeable( $setting ) );
}
/**
* Data provider for test_wp_is_ini_value_changeable().
*
* @return array {
* @type array {
* @type string $setting The setting passed to wp_is_ini_value_changeable().
* @type bool $expected The expected output of wp_convert_hr_to_bytes().
* }
* }
*/
public function data_wp_is_ini_value_changeable() {
$array = array(
array( 'memory_limit', true ), // PHP_INI_ALL.
array( 'log_errors', true ), // PHP_INI_ALL.
array( 'upload_max_filesize', false ), // PHP_INI_PERDIR.
array( 'upload_tmp_dir', false ), // PHP_INI_SYSTEM.
);
if ( extension_loaded( 'Tidy' ) && version_compare( PHP_VERSION, '7.0.0', '>' ) ) {
$array[] = array( 'tidy.clean_output', true ); // PHP_INI_USER.
}
return $array;
}
}