1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- <?php
- /**
- * @group formatting
- */
- class Tests_Formatting_SeemsUtf8 extends WP_UnitTestCase {
- /**
- * `seems_utf8` returns true for utf-8 strings, false otherwise.
- *
- * @dataProvider utf8_strings
- */
- function test_returns_true_for_utf8_strings( $utf8_string ) {
- // From http://www.i18nguy.com/unicode-example.html
- $this->assertTrue( seems_utf8( $utf8_string ) );
- }
- function 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 big5_strings
- */
- function test_returns_false_for_non_utf8_strings( $big5_string ) {
- $this->assertFalse( seems_utf8( $big5_string ) );
- }
- function big5_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;
- }
- }
|