Refactor: improve encapsulation in FakeSequence by privatizing fields and adding protected getters#1779
Closed
akanksharaut2662-rgb wants to merge 1 commit intodatafaker-net:mainfrom
Conversation
…or subclass access
PR Summary
|
|
Codecov Report❌ Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## main #1779 +/- ##
============================================
- Coverage 92.37% 92.33% -0.04%
- Complexity 3448 3451 +3
============================================
Files 339 339
Lines 6794 6800 +6
Branches 670 670
============================================
+ Hits 6276 6279 +3
- Misses 353 354 +1
- Partials 165 167 +2 ☔ View full report in Codecov by Sentry. 🚀 New features to boost your workflow:
|
Contributor
|
AI PR |
Contributor
|
Don't send us PRs anymore please. |
This file contains hidden or 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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
Summary
This PR improves encapsulation in FakeSequence by restricting direct field access and introducing protected getter methods for subclass usage.
Changes Made
Before:
All fields in FakeSequence were declared as protected, allowing subclasses to directly access the internal state. This creates a Deficient Encapsulation smell because protected fields implicitly couple subclasses to the parent’s internal representation, making future refactoring more difficult.
In practice, no subclass required direct access to these fields since all values are provided through the constructor.
After:
Applied Pull-up Method style refactoring to improve encapsulation:
Testing
Notes
This refactoring improves maintainability by enforcing proper encapsulation while preserving the existing class hierarchy and behavior.