Sha256: 9370af8dafd7349fb5a95d1798b27ba2e477bce668c3f45dfd28cabd5f64dea7
Contents?: true
Size: 778 Bytes
Versions: 28
Compression:
Stored size: 778 Bytes
Contents
// // // Created by XCFit Framework // Copyright © 2016 XCFit Framework. All rights reserved. // import Foundation import XCTest class ___PACKAGENAMEASIDENTIFIER___: NSObject { class func CucumberishSwiftInit() { var application : XCUIApplication! //A closure that will be executed just before executing any of your features beforeStart { () -> Void in application = XCUIApplication() } //A Given step definition Given("the app is running") { (args, userInfo) -> Void in application.launch() } //Tell Cucumberish the name of your features folder and let it execute them for you... Cucumberish.executeFeaturesInDirectory("Features", featureTags: nil) } }
Version data entries
28 entries across 17 versions & 1 rubygems