Sha256: 370ea8995d51b9469caed21f9e533c643fd18ea4783c1ce1473de857091e2585
Contents?: true
Size: 616 Bytes
Versions: 8
Compression:
Stored size: 616 Bytes
Contents
// // Copyright © 2015 stringerstheory. All rights reserved. // import Foundation @objc(ShouldIBuyMilk) class ShouldIBuyMilk : NSObject, SlimDecisionTable { //MARK: Inputs var cashInWallet = "" var creditCard = "" var pintsOfMilkRemaining = 0 //MARK: <SlimDecisionTable> func execute() { // 1. Prepare a System Under Test (SUT) using the given inputs. // e.g. let system = System(input: foo) // 2. Run your SUT and prepare to return outputs. } //MARK: Outputs func goToStore() -> String { return "no" } }
Version data entries
8 entries across 8 versions & 1 rubygems