File::getMemberProperties(): improve tests #221
Merged
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Description
Tests/GetMemberPropertiesTest: minor tweak
... to improve the descriptiveness of one test.
Tests/GetMemberPropertiesTest: use named data sets
With non-named data sets, when a test fails, PHPUnit will display the number of the test which failed.
With tests which have a lot of data sets, this makes it interesting (and time-consuming) to debug those, as one now has to figure out which of the data sets in the data provider corresponds to that number.
Using named data sets makes debugging failing tests more straight forward as PHPUnit will display the data set name instead of the number.
Using named data sets also documents what exactly each data set is testing.
Aside from adding the data set name, this commit also adds the parameter name for each item in the data set, this time in an effort to make it more straight forward to update and add tests as it will be more obvious what each key in the data set signifies.
Includes fixing the data types in the docblocks and making them more specific, where relevant.
Tests/GetMemberPropertiesTest: more thoroughly test existing tests
This adds testing of the
type_token
andtype_end_token
return value indexes to the pre-existing tests, same as was already being tested in PHPCSUtils.Tests/GetMemberPropertiesTest: add extra tests
This adds some extra tests which were already in use in PHPCSUtils.
Suggested changelog entry
N/A
Related issues/external references
Related to #146