Changeset 34761 for trunk/tests/phpunit/tests/shortcode.php
- Timestamp:
- 10/02/2015 04:25:40 AM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/tests/phpunit/tests/shortcode.php
r34745 r34761 617 617 ); 618 618 } 619 620 /** 621 * Automated performance testing of the main regex. 622 * 623 * @dataProvider data_whole_posts 624 */ 625 function test_pcre_performance( $input ) { 626 $regex = '/' . get_shortcode_regex() . '/'; 627 $result = benchmark_pcre_backtracking( $regex, $input, 'match_all' ); 628 return $this->assertLessThan( 200, $result ); 629 } 630 631 function data_whole_posts() { 632 require_once( DIR_TESTDATA . '/formatting/whole-posts.php' ); 633 return data_whole_posts(); 634 } 619 635 }
Note: See TracChangeset
for help on using the changeset viewer.