Skip to content

Commit

Permalink
rename package
Browse files Browse the repository at this point in the history
  • Loading branch information
TateLiang committed Aug 14, 2020
1 parent 8fd4f32 commit a941885
Show file tree
Hide file tree
Showing 19 changed files with 7 additions and 7 deletions.
12 changes: 6 additions & 6 deletions Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -4,15 +4,15 @@
import PackageDescription

let package = Package(
name: "Fortune",
name: "FortuneSwift",
platforms: [
.iOS(.v12),
],
products: [
// Products define the executables and libraries produced by a package, and make them visible to other packages.
.library(
name: "Fortune",
targets: ["Fortune"]),
name: "FortuneSwift",
targets: ["FortuneSwift"]),
],
dependencies: [
// Dependencies declare other packages that this package depends on.
Expand All @@ -22,10 +22,10 @@ let package = Package(
// 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: "Fortune",
name: "FortuneSwift",
dependencies: []),
.testTarget(
name: "FortuneTests",
dependencies: ["Fortune"]),
name: "FortuneSwiftTests",
dependencies: ["FortuneSwift"]),
]
)
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import XCTest
@testable import Fortune

final class FortuneTests: XCTestCase {
final class FortuneSwiftTests: XCTestCase {
func testExample() {
// This is an example of a functional test case.
// Use XCTAssert and related functions to verify your tests produce the correct
Expand Down
File renamed without changes.

0 comments on commit a941885

Please sign in to comment.