wordpress-develop/tests/phpunit/tests/term
Sergey Biryukov ddb409edca Build/Test Tools: Implement use of the void solution.
> PHPUnit 8.0.0 introduced a `void` return type declaration to the "fixture" methods – `setUpBeforeClass()`, `setUp()`, `tearDown()` and `tearDownAfterClass()`. As the `void` return type was not introduced until PHP 7.1, this makes it more difficult to create cross-version compatible tests when using fixtures, due to signature mismatches.
>
> The `Yoast\PHPUnitPolyfills\TestCases\TestCase` overcomes the signature mismatch by having two versions. The correct one will be loaded depending on the PHPUnit version being used.
>
> When using this TestCase, if an individual test, or another TestCase which extends this TestCase, needs to overload any of the "fixture" methods, it should do so by using a snake_case variant of the original fixture method name, i.e. `set_up_before_class()`, `set_up()`, `assert_pre_conditions()`, `assert_post_conditions()`, `tear_down()`, and `tear_down_after_class()`.
>
> The snake_case methods will automatically be called by PHPUnit.
>
> > IMPORTANT: The snake_case methods should not call the PHPUnit parent, i.e. do not use `parent::setUp()` from within an overloaded `set_up()` method. If necessary, DO call `parent::set_up()`.

Reference: https://github.com/Yoast/PHPUnit-Polyfills#testcases

This commit renames all declared fixture methods, and calls to parent versions of those fixture methods, from camelCase to snake_case.

Follow-up to [51559-51567].

Props jrf, hellofromTonya, johnbillion, netweb, dd32, pputzer, SergeyBiryukov.
See #46149.

git-svn-id: https://develop.svn.wordpress.org/trunk@51568 602fd350-edb4-49c9-b593-d223f7449a82
2021-08-07 10:29:41 +00:00
..
cache.php Build/Test Tools: Implement use of the void solution. 2021-08-07 10:29:41 +00:00
categoryExists.php Code is Poetry. 2017-11-30 23:09:33 +00:00
getEditTermLink.php Build/Test Tools: Implement use of the void solution. 2021-08-07 10:29:41 +00:00
getTagLink.php Coding Standards: Upgrade WPCS to 1.0.0 2018-08-17 01:50:26 +00:00
getTerm.php Build/Test Tools: Implement use of the void solution. 2021-08-07 10:29:41 +00:00
getTermBy.php Tests: Replace assertContains() with assertStringContainsString() when used with strings. 2021-07-19 14:00:11 +00:00
getTermField.php Build/Test Tools: Implement use of the void solution. 2021-08-07 10:29:41 +00:00
getTermLink.php Build/Test Tools: Implement use of the void solution. 2021-08-07 10:29:41 +00:00
getTermParentsList.php Build/Test Tools: Implement use of the void solution. 2021-08-07 10:29:41 +00:00
getTerms.php Build/Test Tools: Implement use of the void solution. 2021-08-07 10:29:41 +00:00
getTheTerms.php Tests: Use more appropriate assertions in various tests. 2021-07-07 10:32:56 +00:00
isObjectInTerm.php Code is Poetry. 2017-11-30 23:09:33 +00:00
meta.php Build/Test Tools: Implement use of the void solution. 2021-08-07 10:29:41 +00:00
query.php Tests: Replace assertContains() with assertStringContainsString() when used with strings. 2021-07-19 14:00:11 +00:00
slashes.php Build/Test Tools: Implement use of the void solution. 2021-08-07 10:29:41 +00:00
splitSharedTerm.php Build/Test Tools: Implement use of the void solution. 2021-08-07 10:29:41 +00:00
taxQuery.php Build/Test Tools: Implement use of the void solution. 2021-08-07 10:29:41 +00:00
termCounts.php Build/Test Tools: Implement use of the void solution. 2021-08-07 10:29:41 +00:00
termExists.php Build/Test Tools: Replace assertInternalType() usage in unit tests. 2021-07-05 17:21:53 +00:00
wpDeleteObjectTermRelationships.php Tests: Introduce assertSameSets() and assertSameSetsWithIndex(), and use them where appropriate. 2020-09-04 07:01:00 +00:00
wpDeleteTerm.php General: Replace older-style PHP type conversion functions with type casts. 2020-10-08 21:13:57 +00:00
wpGenerateTagCloud.php Tests: Replace assertRegExp() with assertMatchesRegularExpression(). 2021-08-06 21:52:06 +00:00
wpGetObjectTerms.php Build/Test Tools: Implement use of the void solution. 2021-08-07 10:29:41 +00:00
wpInsertTerm.php Build/Test Tools: Implement use of the void solution. 2021-08-07 10:29:41 +00:00
wpRemoveObjectTerms.php Bust object term cache in wp_remove_object_terms(). 2015-10-19 01:52:22 +00:00
wpSetObjectTerms.php Tests: Use more appropriate assertions in various tests. 2021-07-07 10:32:56 +00:00
wpTaxonomy.php Tests: Use more appropriate assertions in various tests. 2021-07-12 10:35:44 +00:00
wpTerm.php Build/Test Tools: Implement use of the void solution. 2021-08-07 10:29:41 +00:00
wpUniqueTermSlug.php Build/Test Tools: Implement use of the void solution. 2021-08-07 10:29:41 +00:00
wpUpdateTerm.php Tests: Use more appropriate assertions in various tests. 2021-07-12 10:35:44 +00:00