Sha256: c184695fe27d4ffb799027292f47d4d16683461ef69a0841f1e947fa358d97d1
Contents?: true
Size: 769 Bytes
Versions: 8
Compression:
Stored size: 769 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. Here is example of the Protocol Oriented Test which implement HomeProtocol. */ import Foundation import XCTest extension HomeProtocol { } class ProtocolOrientedTest: XCTestCase, HomeProtocol { let app = XCUIApplication() func testPrintsAddedToBasket() { XCUIApplication().launch() launchApp() tapHomebutton() } func launchApp() { } func tapHomebutton() { } }
Version data entries
8 entries across 5 versions & 1 rubygems