commit 5951ee4f90a02ee5c8cc5f4bea29943dd46ce912 Author: Tomas Martins Date: Mon Sep 2 19:46:54 2019 -0300 Initial Commit diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..95c4320 --- /dev/null +++ b/.gitignore @@ -0,0 +1,5 @@ +.DS_Store +/.build +/Packages +/*.xcodeproj +xcuserdata/ diff --git a/.swiftpm/xcode/package.xcworkspace/contents.xcworkspacedata b/.swiftpm/xcode/package.xcworkspace/contents.xcworkspacedata new file mode 100644 index 0000000..706eede --- /dev/null +++ b/.swiftpm/xcode/package.xcworkspace/contents.xcworkspacedata @@ -0,0 +1,7 @@ + + + + + diff --git a/.swiftpm/xcode/package.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist b/.swiftpm/xcode/package.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist new file mode 100644 index 0000000..18d9810 --- /dev/null +++ b/.swiftpm/xcode/package.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist @@ -0,0 +1,8 @@ + + + + + IDEDidComputeMac32BitWarning + + + diff --git a/Package.swift b/Package.swift new file mode 100644 index 0000000..7e4e947 --- /dev/null +++ b/Package.swift @@ -0,0 +1,28 @@ +// swift-tools-version:5.1 +// The swift-tools-version declares the minimum version of Swift required to build this package. + +import PackageDescription + +let package = Package( + name: "SWGOFloat", + products: [ + // Products define the executables and libraries produced by a package, and make them visible to other packages. + .library( + name: "SWGOFloat", + targets: ["SWGOFloat"]), + ], + 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: "SWGOFloat", + dependencies: []), + .testTarget( + name: "SWGOFloatTests", + dependencies: ["SWGOFloat"]), + ] +) diff --git a/README.md b/README.md new file mode 100644 index 0000000..717897c --- /dev/null +++ b/README.md @@ -0,0 +1,3 @@ +# SWGOFloat + +A description of this package. diff --git a/Sources/SWGOFloat/SWGOFloat.swift b/Sources/SWGOFloat/SWGOFloat.swift new file mode 100644 index 0000000..7c4e0ac --- /dev/null +++ b/Sources/SWGOFloat/SWGOFloat.swift @@ -0,0 +1,3 @@ +struct SWGOFloat { + var text = "Hello, World!" +} diff --git a/Tests/LinuxMain.swift b/Tests/LinuxMain.swift new file mode 100644 index 0000000..e120abb --- /dev/null +++ b/Tests/LinuxMain.swift @@ -0,0 +1,7 @@ +import XCTest + +import SWGOFloatTests + +var tests = [XCTestCaseEntry]() +tests += SWGOFloatTests.allTests() +XCTMain(tests) diff --git a/Tests/SWGOFloatTests/SWGOFloatTests.swift b/Tests/SWGOFloatTests/SWGOFloatTests.swift new file mode 100644 index 0000000..7cfe363 --- /dev/null +++ b/Tests/SWGOFloatTests/SWGOFloatTests.swift @@ -0,0 +1,15 @@ +import XCTest +@testable import SWGOFloat + +final class SWGOFloatTests: 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(SWGOFloat().text, "Hello, World!") + } + + static var allTests = [ + ("testExample", testExample), + ] +} diff --git a/Tests/SWGOFloatTests/XCTestManifests.swift b/Tests/SWGOFloatTests/XCTestManifests.swift new file mode 100644 index 0000000..0656b23 --- /dev/null +++ b/Tests/SWGOFloatTests/XCTestManifests.swift @@ -0,0 +1,9 @@ +import XCTest + +#if !canImport(ObjectiveC) +public func allTests() -> [XCTestCaseEntry] { + return [ + testCase(SWGOFloatTests.allTests), + ] +} +#endif