Sha256: 63ea0f0f6ae5b0be6cd3a2eff223d40d1ab6d290d42aa9b96c849987d8013d9b
Contents?: true
Size: 799 Bytes
Versions: 2
Compression:
Stored size: 799 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.executeFeatures(inDirectory: "Features", includeTags: nil, excludeTags: nil) } }
Version data entries
2 entries across 2 versions & 1 rubygems