Commit 6e09a350 authored by DrashtiPatel's avatar DrashtiPatel

Initial Commit

parents
.DS_Store
/.build
/Packages
xcuserdata/
DerivedData/
.swiftpm/configuration/registries.json
.swiftpm/xcode/package.xcworkspace/contents.xcworkspacedata
.netrc
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>IDEDidComputeMac32BitWarning</key>
<true/>
</dict>
</plist>
// swift-tools-version: 5.9
// The swift-tools-version declares the minimum version of Swift required to build this package.
import PackageDescription
let package = Package(
name: "ParentSDKLibrary",
products: [
// Products define the executables and libraries a package produces, making them visible to other packages.
.library(
name: "ParentSDKLibrary",
targets: ["ParentSDKLibrary"]),
],
targets: [
// Targets are the basic building blocks of a package, defining a module or a test suite.
// Targets can depend on other targets in this package and products from dependencies.
.target(
name: "ParentSDKLibrary"),
.testTarget(
name: "ParentSDKLibraryTests",
dependencies: ["ParentSDKLibrary"]),
]
)
// The Swift Programming Language
// https://docs.swift.org/swift-book
import XCTest
@testable import ParentSDKLibrary
final class ParentSDKLibraryTests: XCTestCase {
func testExample() throws {
// XCTest Documentation
// https://developer.apple.com/documentation/xctest
// Defining Test Cases and Test Methods
// https://developer.apple.com/documentation/xctest/defining_test_cases_and_test_methods
}
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment