Tests/NamedFunctionCallArgumentsTest: various improvements #267
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/NamedFunctionCallArgumentsTest: improve test markers
Make the test marker names more descriptive.
Tests/NamedFunctionCallArgumentsTest: normalize data provider arrays
... to improve scannability of the test cases covered.
See #225
Tests/NamedFunctionCallArgumentsTest: fix test description
Tests/NamedFunctionCallArgumentsTest: 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.
Include making the data type in the docblock more specific.
Tests/NamedFunctionCallArgumentsTest: activate two test cases
These test cases already existed in the test case file, but were not being run as tests.
Fixed now.
Suggested changelog entry
N/A