Skip to content
This repository was archived by the owner on Mar 10, 2022. It is now read-only.

Commit dbca8f0

Browse files
authored
Merge pull request #33 from nodes-ios/feature/SPMsupport
SPM support added
2 parents f69f56c + c24339a commit dbca8f0

File tree

6 files changed

+56
-7
lines changed

6 files changed

+56
-7
lines changed

Package.swift

+23-7
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,28 @@
1-
//
2-
// Package.swift
3-
// Keyboardhelper
4-
//
5-
// Copyright (c) 2016 Nodes iOS
6-
//
1+
// swift-tools-version:5.0
2+
// The swift-tools-version declares the minimum version of Swift required to build this package.
73

84
import PackageDescription
95

106
let package = Package(
11-
name: "KeyboardHelper"
7+
name: "KeyboardHelper",
8+
products: [
9+
// Products define the executables and libraries produced by a package, and make them visible to other packages.
10+
.library(
11+
name: "KeyboardHelper",
12+
targets: ["KeyboardHelper"]),
13+
],
14+
dependencies: [
15+
// Dependencies declare other packages that this package depends on.
16+
// .package(url: /* package url */, from: "1.0.0"),
17+
],
18+
targets: [
19+
// Targets are the basic building blocks of a package. A target can define a module or a test suite.
20+
// Targets can depend on other targets in this package, and on products in packages which this package depends on.
21+
.target(
22+
name: "KeyboardHelper",
23+
dependencies: []),
24+
.testTarget(
25+
name: "KeyboardHelperTests",
26+
dependencies: ["KeyboardHelper"]),
27+
]
1228
)
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
../../Keyboardhelper/Classes/KeyboardAppearanceInfo.swift
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
../../Keyboardhelper/Classes/KeyboardHelper.swift
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
import XCTest
2+
@testable import KeyboardHelper
3+
4+
final class KeyboardHelperTests: XCTestCase {
5+
func testExample() {
6+
// This is an example of a functional test case.
7+
// Use XCTAssert and related functions to verify your tests produce the correct
8+
// results.
9+
XCTAssertEqual(KeyboardHelper().text, "Hello, World!")
10+
}
11+
12+
static var allTests = [
13+
("testExample", testExample),
14+
]
15+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
import XCTest
2+
3+
#if !canImport(ObjectiveC)
4+
public func allTests() -> [XCTestCaseEntry] {
5+
return [
6+
testCase(KeyboardHelperTests.allTests),
7+
]
8+
}
9+
#endif

Tests/LinuxMain.swift

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
import XCTest
2+
3+
import KeyboardHelperTests
4+
5+
var tests = [XCTestCaseEntry]()
6+
tests += KeyboardHelperTests.allTests()
7+
XCTMain(tests)

0 commit comments

Comments
 (0)