Skip to content

Commit

Permalink
Initial Project by SwiftPM
Browse files Browse the repository at this point in the history
  • Loading branch information
yutailang0119 committed Apr 10, 2019
1 parent 3604272 commit abd97fc
Show file tree
Hide file tree
Showing 7 changed files with 69 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
.DS_Store
/.build
/Packages
/*.xcodeproj
28 changes: 28 additions & 0 deletions Package.swift
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
// swift-tools-version:5.0
// The swift-tools-version declares the minimum version of Swift required to build this package.

import PackageDescription

let package = Package(
name: "FileScanKit",
products: [
// Products define the executables and libraries produced by a package, and make them visible to other packages.
.library(
name: "FileScanKit",
targets: ["FileScanKit"]),
],
dependencies: [
// Dependencies declare other packages that this package depends on.
// .package(url: /* package url */, from: "1.0.0"),
],
targets: [
// Targets are the basic building blocks of a package. A target can define a module or a test suite.
// Targets can depend on other targets in this package, and on products in packages which this package depends on.
.target(
name: "FileScanKit",
dependencies: []),
.testTarget(
name: "FileScanKitTests",
dependencies: ["FileScanKit"]),
]
)
3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
# FileScanKit

A description of this package.
3 changes: 3 additions & 0 deletions Sources/FileScanKit/FileScanKit.swift
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
struct FileScanKit {
var text = "Hello, World!"
}
15 changes: 15 additions & 0 deletions Tests/FileScanKitTests/FileScanKitTests.swift
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
import XCTest
@testable import FileScanKit

final class FileScanKitTests: 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(FileScanKit().text, "Hello, World!")
}

static var allTests = [
("testExample", testExample),
]
}
9 changes: 9 additions & 0 deletions Tests/FileScanKitTests/XCTestManifests.swift
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
import XCTest

#if !canImport(ObjectiveC)
public func allTests() -> [XCTestCaseEntry] {
return [
testCase(FileScanKitTests.allTests),
]
}
#endif
7 changes: 7 additions & 0 deletions Tests/LinuxMain.swift
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
import XCTest

import FileScanKitTests

var tests = [XCTestCaseEntry]()
tests += FileScanKitTests.allTests()
XCTMain(tests)

0 comments on commit abd97fc

Please sign in to comment.