Sha256: 1f8dc9374a7b6d1ae4bf2e24e174c1e896c138e382dd9ca63a6dff63ed8d95c5

Contents?: true

Size: 902 Bytes

Versions: 3

Compression:

Stored size: 902 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 FeatureTests: XCTestCase, Feature {

    override func setUp() {
        super.setUp()

        continueAfterFailure = false
        XCUIApplication().launch()
    }

    override func tearDown() {
        super.tearDown()
    }

    func testAppIsRunning() {
        givenTheAppIsRunning()
    }
}

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
xcfit-6.0.0 XCFit_Templates/XCFit/Ptotocol BDD Bundle Base.xctemplate/Feature+Tests.swift
xcfit-5.0.0 XCFit_Templates/XCFit/Ptotocol BDD Bundle Base.xctemplate/Feature+Tests.swift
xcfit-4.0.9 XCFit_Templates/XCFit/Ptotocol BDD Bundle Base.xctemplate/Feature+Tests.swift