Skip to content

Instantly share code, notes, and snippets.

@Arrlindii
Created March 19, 2019 00:03
Show Gist options
  • Select an option

  • Save Arrlindii/721f027a6ded5da644fd3219e2a37b1c to your computer and use it in GitHub Desktop.

Select an option

Save Arrlindii/721f027a6ded5da644fd3219e2a37b1c to your computer and use it in GitHub Desktop.
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