From d3be71b1397a0102a8e8f695756a74c6ef20beb1 Mon Sep 17 00:00:00 2001 From: Wojciech Nagrodzki <278594+wnagrodzki@users.noreply.github.com> Date: Thu, 3 Jun 2021 10:02:48 +0200 Subject: [PATCH] Remove unneeded source code files --- .../UserInterfaceVariations.swift | 3 --- .../UserInterfaceVariationsTests.swift | 11 ----------- 2 files changed, 14 deletions(-) delete mode 100644 Sources/UserInterfaceVariations/UserInterfaceVariations.swift delete mode 100644 Tests/UserInterfaceVariationsTests/UserInterfaceVariationsTests.swift diff --git a/Sources/UserInterfaceVariations/UserInterfaceVariations.swift b/Sources/UserInterfaceVariations/UserInterfaceVariations.swift deleted file mode 100644 index 6de279e..0000000 --- a/Sources/UserInterfaceVariations/UserInterfaceVariations.swift +++ /dev/null @@ -1,3 +0,0 @@ -struct UserInterfaceVariations { - var text = "Hello, World!" -} diff --git a/Tests/UserInterfaceVariationsTests/UserInterfaceVariationsTests.swift b/Tests/UserInterfaceVariationsTests/UserInterfaceVariationsTests.swift deleted file mode 100644 index 723d48d..0000000 --- a/Tests/UserInterfaceVariationsTests/UserInterfaceVariationsTests.swift +++ /dev/null @@ -1,11 +0,0 @@ - import XCTest - @testable import UserInterfaceVariations - - final class UserInterfaceVariationsTests: XCTestCase { - func testExample() { - // This is an example of a functional test case. - // Use XCTAssert and related functions to verify your tests produce the correct - // results. - XCTAssertEqual(UserInterfaceVariations().text, "Hello, World!") - } - }