Created
March 19, 2019 00:03
-
-
Save Arrlindii/721f027a6ded5da644fd3219e2a37b1c to your computer and use it in GitHub Desktop.
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
| class PurchaseButtonColorSplitTest: SplitTestProtocol { | |
| typealias ValueType = UIColor | |
| static var identifier: String = "purchase_button_color" | |
| var value: ValueType | |
| required init(group: String) { | |
| if group == "a" { | |
| self.value = UIColor.red | |
| } else { | |
| self.value = UIColor.green | |
| } | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment