wordpress-develop/tests/phpunit/tests/formatting/seemsUtf8.php
Sergey Biryukov d1046dc5f3 Tests: Use the data_ prefix for various data provider methods.
This aims to bring more consistency to the test suite, as the vast majority of data providers already use that prefix.

Includes moving some data providers next to the tests they are used in.

Follow-up to [55464].

See #57841.

git-svn-id: https://develop.svn.wordpress.org/trunk@55562 602fd350-edb4-49c9-b593-d223f7449a82
2023-03-19 12:03:30 +00:00

47 lines
1.2 KiB
PHP

<?php
/**
* @group formatting
*
* @covers ::seems_utf8
*/
class Tests_Formatting_SeemsUtf8 extends WP_UnitTestCase {
/**
* `seems_utf8` returns true for utf-8 strings, false otherwise.
*
* @dataProvider data_seems_utf8_returns_true_for_utf8_strings
*/
public function test_seems_utf8_returns_true_for_utf8_strings( $utf8_string ) {
// From http://www.i18nguy.com/unicode-example.html
$this->assertTrue( seems_utf8( $utf8_string ) );
}
public function data_seems_utf8_returns_true_for_utf8_strings() {
$utf8_strings = file( DIR_TESTDATA . '/formatting/utf-8/utf-8.txt' );
foreach ( $utf8_strings as &$string ) {
$string = (array) trim( $string );
}
unset( $string );
return $utf8_strings;
}
/**
* @dataProvider data_seems_utf8_returns_false_for_non_utf8_strings
*/
public function test_seems_utf8_returns_false_for_non_utf8_strings( $big5_string ) {
$this->assertFalse( seems_utf8( $big5_string ) );
}
public function data_seems_utf8_returns_false_for_non_utf8_strings() {
// Get data from formatting/big5.txt.
$big5_strings = file( DIR_TESTDATA . '/formatting/big5.txt' );
foreach ( $big5_strings as &$string ) {
$string = (array) trim( $string );
}
unset( $string );
return $big5_strings;
}
}