From 13d0d823912a9c4f8a90b14ceb97eeecc77cf011 Mon Sep 17 00:00:00 2001 From: Amy Gale Ruth Bowersox Date: Sun, 24 May 2020 22:06:33 -0600 Subject: [PATCH] added a bunch of files XCode forgot to add --- Privyet/Base.lproj/LaunchScreen.storyboard | 26 +++++ Privyet/Base.lproj/Main.storyboard | 108 +++++++++++++++++++++ PrivyetTests/Info.plist | 22 +++++ PrivyetTests/PrivyetTests.swift | 34 +++++++ PrivyetUITests/Info.plist | 22 +++++ PrivyetUITests/PrivyetUITests.swift | 43 ++++++++ 6 files changed, 255 insertions(+) create mode 100644 Privyet/Base.lproj/LaunchScreen.storyboard create mode 100644 Privyet/Base.lproj/Main.storyboard create mode 100644 PrivyetTests/Info.plist create mode 100644 PrivyetTests/PrivyetTests.swift create mode 100644 PrivyetUITests/Info.plist create mode 100644 PrivyetUITests/PrivyetUITests.swift diff --git a/Privyet/Base.lproj/LaunchScreen.storyboard b/Privyet/Base.lproj/LaunchScreen.storyboard new file mode 100644 index 0000000..c9426ba --- /dev/null +++ b/Privyet/Base.lproj/LaunchScreen.storyboard @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/Privyet/Base.lproj/Main.storyboard b/Privyet/Base.lproj/Main.storyboard new file mode 100644 index 0000000..baf538e --- /dev/null +++ b/Privyet/Base.lproj/Main.storyboard @@ -0,0 +1,108 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/PrivyetTests/Info.plist b/PrivyetTests/Info.plist new file mode 100644 index 0000000..64d65ca --- /dev/null +++ b/PrivyetTests/Info.plist @@ -0,0 +1,22 @@ + + + + + CFBundleDevelopmentRegion + $(DEVELOPMENT_LANGUAGE) + CFBundleExecutable + $(EXECUTABLE_NAME) + CFBundleIdentifier + $(PRODUCT_BUNDLE_IDENTIFIER) + CFBundleInfoDictionaryVersion + 6.0 + CFBundleName + $(PRODUCT_NAME) + CFBundlePackageType + $(PRODUCT_BUNDLE_PACKAGE_TYPE) + CFBundleShortVersionString + 1.0 + CFBundleVersion + 1 + + diff --git a/PrivyetTests/PrivyetTests.swift b/PrivyetTests/PrivyetTests.swift new file mode 100644 index 0000000..1d5d743 --- /dev/null +++ b/PrivyetTests/PrivyetTests.swift @@ -0,0 +1,34 @@ +// +// PrivyetTests.swift +// PrivyetTests +// +// Created by Amy Bowersox on 5/23/20. +// Copyright © 2020 Erbosoft Metaverse Design Solutions. All rights reserved. +// + +import XCTest +@testable import Privyet + +class PrivyetTests: XCTestCase { + + override func setUpWithError() throws { + // Put setup code here. This method is called before the invocation of each test method in the class. + } + + override func tearDownWithError() throws { + // Put teardown code here. This method is called after the invocation of each test method in the class. + } + + func testExample() throws { + // This is an example of a functional test case. + // Use XCTAssert and related functions to verify your tests produce the correct results. + } + + func testPerformanceExample() throws { + // This is an example of a performance test case. + self.measure { + // Put the code you want to measure the time of here. + } + } + +} diff --git a/PrivyetUITests/Info.plist b/PrivyetUITests/Info.plist new file mode 100644 index 0000000..64d65ca --- /dev/null +++ b/PrivyetUITests/Info.plist @@ -0,0 +1,22 @@ + + + + + CFBundleDevelopmentRegion + $(DEVELOPMENT_LANGUAGE) + CFBundleExecutable + $(EXECUTABLE_NAME) + CFBundleIdentifier + $(PRODUCT_BUNDLE_IDENTIFIER) + CFBundleInfoDictionaryVersion + 6.0 + CFBundleName + $(PRODUCT_NAME) + CFBundlePackageType + $(PRODUCT_BUNDLE_PACKAGE_TYPE) + CFBundleShortVersionString + 1.0 + CFBundleVersion + 1 + + diff --git a/PrivyetUITests/PrivyetUITests.swift b/PrivyetUITests/PrivyetUITests.swift new file mode 100644 index 0000000..15b869f --- /dev/null +++ b/PrivyetUITests/PrivyetUITests.swift @@ -0,0 +1,43 @@ +// +// PrivyetUITests.swift +// PrivyetUITests +// +// Created by Amy Bowersox on 5/23/20. +// Copyright © 2020 Erbosoft Metaverse Design Solutions. All rights reserved. +// + +import XCTest + +class PrivyetUITests: XCTestCase { + + override func setUpWithError() throws { + // Put setup code here. This method is called before the invocation of each test method in the class. + + // In UI tests it is usually best to stop immediately when a failure occurs. + continueAfterFailure = false + + // In UI tests it’s important to set the initial state - such as interface orientation - required for your tests before they run. The setUp method is a good place to do this. + } + + override func tearDownWithError() throws { + // Put teardown code here. This method is called after the invocation of each test method in the class. + } + + func testExample() throws { + // UI tests must launch the application that they test. + let app = XCUIApplication() + app.launch() + + // Use recording to get started writing UI tests. + // Use XCTAssert and related functions to verify your tests produce the correct results. + } + + func testLaunchPerformance() throws { + if #available(macOS 10.15, iOS 13.0, tvOS 13.0, *) { + // This measures how long it takes to launch your application. + measure(metrics: [XCTOSSignpostMetric.applicationLaunch]) { + XCUIApplication().launch() + } + } + } +}