Changeset 52305
- Timestamp:
- 12/02/2021 05:39:57 AM (3 years ago)
- Location:
- trunk/tests/phpunit/tests
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/tests/phpunit/tests/link/editTermLink.php
r52180 r52305 32 32 * @ticket 50225 33 33 * 34 * @param string $taxonomy Taxonomy be entested (used for index of term keys).34 * @param string $taxonomy Taxonomy being tested (used for index of term keys). 35 35 * @param bool $use_id When true, pass term ID. Else, pass term object. 36 36 * @param string $expected Expected URL within admin of edit link. … … 53 53 * @ticket 50225 54 54 * 55 * @param string $taxonomy Taxonomy be entested (used for index of term keys).55 * @param string $taxonomy Taxonomy being tested (used for index of term keys). 56 56 * @param bool $use_id When true, pass term ID. Else, pass term object. 57 57 */ … … 69 69 * @ticket 50225 70 70 * 71 * @param string $taxonomy Taxonomy be entested (used for index of term keys).71 * @param string $taxonomy Taxonomy being tested (used for index of term keys). 72 72 * @param bool $use_id When true, pass term ID. Else, pass term object. 73 73 */ … … 93 93 * @ticket 50225 94 94 * 95 * @param string $taxonomy Taxonomy be entested (used for index of term keys).95 * @param string $taxonomy Taxonomy being tested (used for index of term keys). 96 96 * @param bool $use_id When true, pass term ID. Else, pass term object. 97 97 */ … … 166 166 * @since 5.9.0 167 167 * 168 * @param string $taxonomy Taxonomy be entested (used for index of term keys).168 * @param string $taxonomy Taxonomy being tested (used for index of term keys). 169 169 * @param bool $use_id When true, pass term ID. Else, pass term object. 170 170 * @return WP_Term|int If $use_id is true, term ID is returned; else instance of WP_Term. -
trunk/tests/phpunit/tests/link/getEditTermLink.php
r52180 r52305 32 32 * @ticket 50225 33 33 * 34 * @param string $taxonomy Taxonomy be entested (used for index of term keys).34 * @param string $taxonomy Taxonomy being tested (used for index of term keys). 35 35 * @param bool $use_id When true, pass term ID. Else, pass term object. 36 36 * @param string $expected Expected URL within admin of edit link. … … 53 53 * @ticket 50225 54 54 * 55 * @param string $taxonomy Taxonomy be entested (used for index of term keys).55 * @param string $taxonomy Taxonomy being tested (used for index of term keys). 56 56 * @param bool $use_id When true, pass term ID. Else, pass term object. 57 57 */ … … 69 69 * @ticket 50225 70 70 * 71 * @param string $taxonomy Taxonomy be entested (used for index of term keys).71 * @param string $taxonomy Taxonomy being tested (used for index of term keys). 72 72 * @param bool $use_id When true, pass term ID. Else, pass term object. 73 73 */ … … 93 93 * @ticket 50225 94 94 * 95 * @param string $taxonomy Taxonomy be entested (used for index of term keys).95 * @param string $taxonomy Taxonomy being tested (used for index of term keys). 96 96 * @param bool $use_id When true, pass term ID. Else, pass term object. 97 97 */ … … 166 166 * @since 5.9.0 167 167 * 168 * @param string $taxonomy Taxonomy be entested (used for index of term keys).168 * @param string $taxonomy Taxonomy being tested (used for index of term keys). 169 169 * @param bool $use_id When true, pass term ID. Else, pass term object. 170 170 * @return WP_Term|int If $use_id is true, term ID is returned; else instance of WP_Term. -
trunk/tests/phpunit/tests/term/getTermLink.php
r52255 r52305 225 225 * @ticket 50225 226 226 * 227 * @param string $taxonomy Taxonomy be entested (used for index of term keys).227 * @param string $taxonomy Taxonomy being tested (used for index of term keys). 228 228 * @param bool $use_id When true, pass term ID. Else, pass term object. 229 229 */ … … 248 248 * @ticket 50225 249 249 * 250 * @param string $taxonomy Taxonomy be entested (used for index of term keys).250 * @param string $taxonomy Taxonomy being tested (used for index of term keys). 251 251 * @param bool $use_id When true, pass term ID. Else, pass term object. 252 252 */ … … 271 271 * @ticket 50225 272 272 * 273 * @param string $taxonomy Taxonomy be entested (used for index of term keys).273 * @param string $taxonomy Taxonomy being tested (used for index of term keys). 274 274 * @param bool $use_id When true, pass term ID. Else, skip the test. 275 275 */ … … 284 284 $this->assertIsString( $term_feed_link ); 285 285 } else { 286 $this->markTestSkipped( 'This test requires to pass an idto get_term_feed_link()' );286 $this->markTestSkipped( 'This test requires to pass an ID to get_term_feed_link()' ); 287 287 } 288 288 } … … 337 337 * @since 5.9.0 338 338 * 339 * @param string $taxonomy Taxonomy be entested (used for index of term keys).339 * @param string $taxonomy Taxonomy being tested (used for index of term keys). 340 340 * @param bool $use_id When true, pass term ID. Else, pass term object. 341 341 * @return WP_Term|int If $use_id is true, term ID is returned; else instance of WP_Term.
Note: See TracChangeset
for help on using the changeset viewer.