Sha256: 12dee5d3a1ffd7463b0aec45ec7d2323788397135a3cee5381da2b704d7142ce
Contents?: true
Size: 572 Bytes
Versions: 24
Compression:
Stored size: 572 Bytes
Contents
// // Copyright © 2015 stringerstheory. All rights reserved. // import Foundation @objc(FixtureExample) class FixtureExample : NSObject, SlimDecisionTable { //MARK: Inputs var input = "" //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 var output: NSString { get { return "" } } }
Version data entries
24 entries across 17 versions & 1 rubygems