This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import XCTest | |
extension XCTestCase { | |
var springboard: XCUIApplication { | |
return XCUIApplication(bundleIdentifier: "com.apple.springboard") | |
} | |
func closeApp() { | |
XCUIDevice.shared.press(XCUIDevice.Button.home) | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// | |
// ViewControllerWithVerticalScrollView.swift | |
// VerticalScrollViewAL | |
// | |
// Created by Jörn Schoppe on 12.08.18. | |
// Copyright © 2018 Jörn Schoppe. All rights reserved. | |
// | |
import UIKit |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// | |
// ViewController.swift | |
// HorizontalScrollView | |
// | |
// Created by Jörn Schoppe on 13.04.16. | |
// Copyright © 2016 pixeldock. All rights reserved. | |
// | |
import UIKit | |
import SnapKit |