-
-
Notifications
You must be signed in to change notification settings - Fork 1.5k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Change TestFactoryTestDescriptor implementation
- Override isTest(): It is not a test but a test container - Override hasTests(): It does not have children known at discovery time, but should not get pruned by launcher - In order for PostDiscoveryFilters to be applied Root#isExcluded was changed to check static TestDescriptors without children instead of only TestDescriptors that return true for isTest() Fixes #280.
- Loading branch information
1 parent
c08fc19
commit 55308d6
Showing
3 changed files
with
21 additions
and
13 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This is much more logical now! 👍