-
-
Notifications
You must be signed in to change notification settings - Fork 2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
U117293
authored and
U117293
committed
Mar 17, 2023
1 parent
86a3130
commit 6d3b720
Showing
2 changed files
with
29 additions
and
24 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
29 changes: 15 additions & 14 deletions
29
...r-core/src/test/java/io/cucumber/core/runtime/UuidGeneratorServiceLoaderTest.md
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,17 @@ | ||
# Testcases for `UuidGeneratorServiceLoader` | ||
|
||
| # | uuid-generator property | Available services | Result | | ||
|----|---------------------------|-------------------------------------------------------------------------------------|----------------------------------------------------------------------------------| | ||
| 1 | undefined | none | exception, no generators available | | ||
| 2 | undefined | RandomUuidGenerator, IncrementingUuidGenerator | RandomUuidGenerator used | | ||
| 3 | RandomUuidGenerator | RandomUuidGenerator, IncrementingUuidGenerator | RandomUuidGenerator used | | ||
| 4 | undefined | RandomUuidGenerator, IncrementingUuidGenerator, OtherGenerator | OtherGenerator used | | ||
| 5 | RandomUuidGenerator | RandomUuidGenerator, IncrementingUuidGenerator, OtherGenerator | RandomUuidGenerator used | | ||
| 6 | undefined | RandomUuidGenerator, IncrementingUuidGenerator, OtherGenerator, YetAnotherGenerator | exception, cucumber couldn't decide multiple (non default) generators available | | ||
| 7 | OtherGenerator | RandomUuidGenerator, IncrementingUuidGenerator, OtherGenerator, YetAnotherGenerator | OtherGenerator used | | ||
| 8 | IncrementingUuidGenerator | RandomUuidGenerator, IncrementingUuidGenerator, OtherGenerator, YetAnotherGenerator | IncrementingUuidGenerator used | | ||
| 9 | IncrementingUuidGenerator | RandomUuidGenerator, IncrementingUuidGenerator | IncrementingUuidGenerator used | | ||
| 10 | OtherGenerator | none | exception, generator OtherGenerator not available | | ||
| 11 | undefined | OtherGenerator | OtherGenerator used | | ||
| 12 | undefined | IncrementingUuidGenerator, OtherGenerator | OtherGenerator used | | ||
| # | uuid-generator property | Available services | Result | | ||
|-----|---------------------------|-------------------------------------------------------------------------------------|----------------------------------------------------------------------------------| | ||
| 1 | undefined | none | exception, no generators available | | ||
| 2 | undefined | RandomUuidGenerator, IncrementingUuidGenerator | RandomUuidGenerator used | | ||
| 3 | RandomUuidGenerator | RandomUuidGenerator, IncrementingUuidGenerator | RandomUuidGenerator used | | ||
| 4 | undefined | RandomUuidGenerator, IncrementingUuidGenerator, OtherGenerator | OtherGenerator used | | ||
| 5 | RandomUuidGenerator | RandomUuidGenerator, IncrementingUuidGenerator, OtherGenerator | RandomUuidGenerator used | | ||
| 6 | undefined | RandomUuidGenerator, IncrementingUuidGenerator, OtherGenerator, YetAnotherGenerator | exception, cucumber couldn't decide multiple (non default) generators available | | ||
| 7 | OtherGenerator | RandomUuidGenerator, IncrementingUuidGenerator, OtherGenerator, YetAnotherGenerator | OtherGenerator used | | ||
| 8 | IncrementingUuidGenerator | RandomUuidGenerator, IncrementingUuidGenerator, OtherGenerator, YetAnotherGenerator | IncrementingUuidGenerator used | | ||
| 9 | IncrementingUuidGenerator | RandomUuidGenerator, IncrementingUuidGenerator | IncrementingUuidGenerator used | | ||
| 10 | OtherGenerator | none | exception, generator OtherGenerator not available | | ||
| 11 | undefined | OtherGenerator | OtherGenerator used | | ||
| 12 | undefined | IncrementingUuidGenerator, OtherGenerator | OtherGenerator used | | ||
| 13 | undefined | IncrementingUuidGenerator | IncrementingUuidGenerator used | |