Changeset 51568 for trunk/tests/phpunit/tests/post/output.php
- Timestamp:
- 08/07/2021 10:29:41 AM (4 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/tests/phpunit/tests/post/output.php
r51462 r51568 9 9 class Tests_Post_Output extends WP_UnitTestCase { 10 10 11 function set Up() {12 parent::set Up();11 function set_up() { 12 parent::set_up(); 13 13 add_shortcode( 'dumptag', array( $this, '_shortcode_dumptag' ) ); 14 14 add_shortcode( 'paragraph', array( $this, '_shortcode_paragraph' ) ); 15 15 } 16 16 17 function tear Down() {17 function tear_down() { 18 18 global $shortcode_tags; 19 19 unset( $shortcode_tags['dumptag'], $shortcode_tags['paragraph'] ); 20 parent::tear Down();20 parent::tear_down(); 21 21 } 22 22
Note: See TracChangeset
for help on using the changeset viewer.