[Bug] Default *DataProvider priority is the same than custom Providers
See original GitHub issueSince I updated to v2.3.5, the order of my project’s DataProvider is messed up : the default CollectionDataProvider is tagged before my custom ones, so it is called instead.
As per the documentation, one will expect the custom DataProviders to be always called before the default ones. Additionally, this is really error-prone since it could be hard to catch.
Shouldn’t the default DataProviders have a negative priority by default ?
Issue Analytics
- State:
- Created 5 years ago
- Comments:5
Top Results From Across the Web
Having one and only one Collection Data provider for ... - GitHub
Hi,. I do need custom operation in my API which returns an entity for given slug. Consequently, the total number of operations for...
Read more >Can we include testng @priority and @dataprovider in same ...
1 Answer 1 · It does not matter what order you place annotation properties in. i.e. The following are the same: @Test(priority =...
Read more >How to use TestNg DataProviders (with Detailed ... - Tools QA
TestNG dataprovider returns a 2d list of objects. The method then performs a data-driven test for each value that you have specified. The ......
Read more >@Factory combined with @DataProvider BUG , please help
The data provider on your constructor creates two instances of the test class, and then the data provider on the method will call...
Read more >Add/Edit Data Provider | Enterprise Architect User Guide
Add/Edit Data Provider. The Add/Edit Data Provider screen will be shown whenever you request to create a new Data Provider or edit an...
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found

I have done a PR https://github.com/symfony/symfony/pull/29853
@Cethy Read it, solution is here https://github.com/symfony/symfony/issues/29836