Package wisp.feature.testing

Types

Link copied to clipboard
open class FakeFeatureFlags : FeatureFlags, LegacyFeatureFlags, DynamicConfig, StrongFeatureFlags, Configurable<FakeFeatureFlagsConfig>

In-memory test implementation of FeatureFlags that allows flags to be overridden.

Link copied to clipboard
data class FakeFeatureFlagsConfig @JvmOverloads constructor(featuresConfig: List<FeaturesConfig>) : Config
Link copied to clipboard
class FakeLegacyFeatureFlags : LegacyFeatureFlags, DynamicConfig

In-memory test implementation of FeatureFlags that allows flags to be overridden.

Link copied to clipboard
class FakeStrongFeatureFlags : StrongFeatureFlags

In-memory test implementation of FeatureFlags that allows for overriding strong feature flags

Link copied to clipboard
data class FeaturesConfig @JvmOverloads constructor(featureName: String, key: String?, attributes: Attributes, value: String, type: String)