Sha256: 75483a5a11cd4dfd020e109b8a3b07c74026f34481abd11533d4b9ba18c0b224
Contents?: true
Size: 946 Bytes
Versions: 4
Compression:
Stored size: 946 Bytes
Contents
// // // Created by XCFit Framework // Copyright © 2016 XCFit Framework. All rights reserved. // /* This is sample code created by XCFit Framework and can be edited/Removed as per your project need. You can also re-arrange Xcode Groups and directories as per your need. This is a actual representation of the test which extends to XCFit and confirms to Feature protocol. We can write a protocol per test implement steps with extensions and store elements in the enums. */ import XCTest //import XCFit // Once XCFit is imported then you can extend this class to use pre-defined steps class ___PACKAGENAMEASIDENTIFIER___Tests: XCTestCase, Feature { override func setUp() { super.setUp() continueAfterFailure = false XCUIApplication().launch() } override func tearDown() { super.tearDown() } func testAppIsRunning() { givenTheAppIsRunning() } }
Version data entries
4 entries across 4 versions & 1 rubygems