Changeset 35225 for trunk/tests/phpunit/tests/comment/commentForm.php
- Timestamp:
- 10/16/2015 09:04:12 PM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/tests/phpunit/tests/comment/commentForm.php
r32511 r35225 6 6 class Tests_Comment_CommentForm extends WP_UnitTestCase { 7 7 public function test_default_markup_for_submit_button_and_wrapper() { 8 $p = $this->factory->post->create();8 $p = self::$factory->post->create(); 9 9 10 10 $args = array( … … 22 22 23 23 public function test_custom_submit_button() { 24 $p = $this->factory->post->create();24 $p = self::$factory->post->create(); 25 25 26 26 $args = array( … … 38 38 39 39 public function test_custom_submit_field() { 40 $p = $this->factory->post->create();40 $p = self::$factory->post->create(); 41 41 42 42 $args = array( … … 58 58 */ 59 59 public function test_submit_button_and_submit_field_should_fall_back_on_defaults_when_filtered_defaults_do_not_contain_the_keys() { 60 $p = $this->factory->post->create();60 $p = self::$factory->post->create(); 61 61 62 62 $args = array(
Note: See TracChangeset
for help on using the changeset viewer.