-
Notifications
You must be signed in to change notification settings - Fork 165
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add "Mass Effect" faker #301
Conversation
README.md
Outdated
@@ -309,6 +309,7 @@ Providers | |||
* Witcher | |||
* Yoda | |||
* Zelda | |||
* Mass Effect |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Would be better to follow abc ordering
@@ -1019,6 +1019,10 @@ public Zelda zelda() { | |||
return getProvider(Zelda.class, () -> new Zelda(this)); | |||
} | |||
|
|||
public MassEffect massEffect() { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Please follow abc ordering in providers methods
it would simplify code navigation
@@ -224,7 +224,8 @@ public String getPath() { | |||
// "world_cup.yml", | |||
// "world_of_warcraft.yml", | |||
"yoda.yml", | |||
"zelda.yml").map(EnFile::new).collect(Collectors.toList()); | |||
"zelda.yml", | |||
"mass-effect.yml").map(EnFile::new).collect(Collectors.toList()); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Ordering
@@ -205,6 +205,7 @@ void testAllFakerMethodsThatReturnStrings(Locale locale, Random random) throws E | |||
testAllMethodsThatReturnStringsActuallyReturnStrings(faker.yoda()); | |||
testAllMethodsThatReturnStringsActuallyReturnStrings(faker.zelda()); | |||
testAllMethodsThatReturnStringsActuallyReturnStrings(faker.oscarMovie()); | |||
testAllMethodsThatReturnStringsActuallyReturnStrings(faker.massEffect()); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Please, follow order here too
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
have also moved oscarMovie to the right place.
Codecov Report
@@ Coverage Diff @@
## master #301 +/- ##
============================================
+ Coverage 94.86% 94.87% +0.01%
- Complexity 1893 1900 +7
============================================
Files 197 198 +1
Lines 3797 3805 +8
Branches 379 379
============================================
+ Hits 3602 3610 +8
Misses 99 99
Partials 96 96
📣 We’re building smart automated test selection to slash your CI/CD build times. Learn more |
Awesome, thank you for this! |
Add Mass Effect Faker with character/specie/planet/cluster -names and quotes.