Changeset 52010 for trunk/tests/phpunit/tests/meta/slashes.php
- Timestamp:
- 11/04/2021 03:22:47 PM (3 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/tests/phpunit/tests/meta/slashes.php
r51568 r52010 19 19 } 20 20 21 function set_up() {21 public function set_up() { 22 22 parent::set_up(); 23 23 … … 36 36 * Tests the controller function that expects slashed data. 37 37 */ 38 function test_edit_post() {38 public function test_edit_post() { 39 39 $post_id = self::$post_id; 40 40 … … 113 113 * Tests the legacy model function that expects slashed data. 114 114 */ 115 function test_add_post_meta() {115 public function test_add_post_meta() { 116 116 $post_id = self::$post_id; 117 117 … … 128 128 * Tests the legacy model function that expects slashed data. 129 129 */ 130 function test_update_post_meta() {130 public function test_update_post_meta() { 131 131 $post_id = self::$post_id; 132 132 … … 143 143 * Tests the model function that expects slashed data. 144 144 */ 145 function test_add_comment_meta() {145 public function test_add_comment_meta() { 146 146 $comment_id = self::$comment_id; 147 147 … … 166 166 * Tests the model function that expects slashed data. 167 167 */ 168 function test_update_comment_meta() {168 public function test_update_comment_meta() { 169 169 $comment_id = self::$comment_id; 170 170 … … 193 193 * Tests the model function that expects slashed data. 194 194 */ 195 function test_add_user_meta() {195 public function test_add_user_meta() { 196 196 $user_id = self::$user_id; 197 197 … … 216 216 * Tests the model function that expects slashed data. 217 217 */ 218 function test_update_user_meta() {218 public function test_update_user_meta() { 219 219 $user_id = self::$user_id; 220 220
Note: See TracChangeset
for help on using the changeset viewer.