Skip to content

Commit

Permalink
πŸ—οΈ Project structure updates
Browse files Browse the repository at this point in the history
  • Loading branch information
jobearrr committed Jul 3, 2024
1 parent bd08351 commit 104e420
Show file tree
Hide file tree
Showing 14 changed files with 13 additions and 13 deletions.
12 changes: 6 additions & 6 deletions Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
import PackageDescription

let package = Package(
name: "LeetSwiftCore",
name: "LeetCode",
platforms: [
.iOS(.v15),
.macOS(.v12),
Expand All @@ -12,14 +12,14 @@ let package = Package(
],
products: [
.library(
name: "LeetSwiftCore",
targets: ["LeetSwiftCore"])
name: "LeetCode",
targets: ["LeetCode"])
],
targets: [
.target(
name: "LeetSwiftCore"),
name: "LeetCode"),
.testTarget(
name: "LeetSwiftCoreTests",
dependencies: ["LeetSwiftCore"])
name: "LeetCodeTests",
dependencies: ["LeetCode"])
]
)
File renamed without changes.
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
//
// AddTwoNumbersSolution.swift
//
// LeetSwift
//
// Created by Jobert SΓ‘ on 02/07/2024.
//
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
//

import XCTest
@testable import LeetSwiftCore
@testable import LeetCode

class ListNodeTests: XCTestCase {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
//

import XCTest
@testable import LeetSwiftCore
@testable import LeetCode

final class TwoSumTests: XCTestCase {

Expand Down
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
//
// AddTwoNumbersTests.swift
//
// LeetSwift
//
// Created by Jobert SΓ‘ on 02/07/2024.
//

import XCTest
@testable import LeetSwiftCore
@testable import LeetCode

final class AddTwoNumbersTests: XCTestCase {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
//

import Foundation
@testable import LeetSwiftCore
@testable import LeetCode

extension Array where Element == Int {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
//

import XCTest
@testable import LeetSwiftCore
@testable import LeetCode

class ArrayListNodeTests: XCTestCase {

Expand Down

0 comments on commit 104e420

Please sign in to comment.