Conversation
|
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.



This pull request introduces a generic
CheckAPI for strategy validation and adds a comprehensive set of convenience helpers for all supported strategy types. It also significantly expands and refines the test suite to cover the new API and all strategy types, and updates documentation to reflect these changes.API Enhancements
Check(strategy, input)method on theSwitchertype, enabling validation for any strategy type with a single entry-point.CheckValue,CheckNumeric,CheckDate,CheckTime,CheckPayload,CheckNetwork, andCheckRegex, all delegating to the genericCheckmethod for a consistent and extensible API.README.mdto demonstrate chaining of multiple strategy checks and the new generic check API. [1] [2] [3]Test Suite Expansion and Refactoring
local_test.gointo themed groups (e.g., value, numeric, date, time, payload, regex strategies), and added comprehensive test coverage for all strategy types and their operations using both the generic and helper APIs. [1] [2]Test Data
default_date_only.json) to support the new test cases.These changes make the SDK more flexible, easier to use, and better tested across all supported feature flag strategies.