Sha256: 38cc2f9983b84e95a1ab1f0f52c2951cfee51efea03a02730b775bfcb4726ffd
Contents?: true
Size: 853 Bytes
Versions: 6
Compression:
Stored size: 853 Bytes
Contents
// // // Created by XCFit Framework // Copyright © 2017 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 class can be used to put all your test base setup e.g launch Argument, cutom Environment varibales, Mock Server, teardown etc etc */ import Foundation import XCTest // Uncomment the import line below while using XCFit Swift framework for pre-defined BDD style steps. Extend this class to XCFit //import XCFit class ___PACKAGENAMEASIDENTIFIER___TestBase: XCTestCase { override func setUp() { super.setUp() continueAfterFailure = false XCUIApplication().launch() } override func tearDown() { super.tearDown() } }
Version data entries
6 entries across 6 versions & 1 rubygems