From b77e8ce98ec17f693f565b11b79e61287fa19a93 Mon Sep 17 00:00:00 2001 From: Kumar Priyansh Date: Fri, 3 Jan 2020 18:41:19 +0530 Subject: Initialised a new Xcode Project --- WeatherAppTests/Info.plist | 22 ++++++++++++++++++++++ WeatherAppTests/WeatherAppTests.swift | 34 ++++++++++++++++++++++++++++++++++ 2 files changed, 56 insertions(+) create mode 100644 WeatherAppTests/Info.plist create mode 100644 WeatherAppTests/WeatherAppTests.swift (limited to 'WeatherAppTests') diff --git a/WeatherAppTests/Info.plist b/WeatherAppTests/Info.plist new file mode 100644 index 0000000..64d65ca --- /dev/null +++ b/WeatherAppTests/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/WeatherAppTests/WeatherAppTests.swift b/WeatherAppTests/WeatherAppTests.swift new file mode 100644 index 0000000..7583c62 --- /dev/null +++ b/WeatherAppTests/WeatherAppTests.swift @@ -0,0 +1,34 @@ +// +// WeatherAppTests.swift +// WeatherAppTests +// +// Created by Lucifer on 03/01/20. +// Copyright © 2020 Kumar Priyansh. All rights reserved. +// + +import XCTest +@testable import WeatherApp + +class WeatherAppTests: XCTestCase { + + override func setUp() { + // Put setup code here. This method is called before the invocation of each test method in the class. + } + + override func tearDown() { + // Put teardown code here. This method is called after the invocation of each test method in the class. + } + + func testExample() { + // This is an example of a functional test case. + // Use XCTAssert and related functions to verify your tests produce the correct results. + } + + func testPerformanceExample() { + // This is an example of a performance test case. + self.measure { + // Put the code you want to measure the time of here. + } + } + +} -- cgit v1.2.3