Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
P
ParentSDK
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
school
ParentSDK
Commits
6e09a350
Commit
6e09a350
authored
Oct 23, 2024
by
DrashtiPatel
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Initial Commit
parents
Changes
5
Show whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
53 additions
and
0 deletions
+53
-0
.gitignore
.gitignore
+8
-0
IDEWorkspaceChecks.plist
...package.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist
+8
-0
Package.swift
Package.swift
+23
-0
ParentSDKLibrary.swift
Sources/ParentSDKLibrary/ParentSDKLibrary.swift
+2
-0
ParentSDKLibraryTests.swift
Tests/ParentSDKLibraryTests/ParentSDKLibraryTests.swift
+12
-0
No files found.
.gitignore
0 → 100644
View file @
6e09a350
.DS_Store
/.build
/Packages
xcuserdata/
DerivedData/
.swiftpm/configuration/registries.json
.swiftpm/xcode/package.xcworkspace/contents.xcworkspacedata
.netrc
.swiftpm/xcode/package.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist
0 → 100644
View file @
6e09a350
<
?xml
v
e
rsion="
1
.
0
"
e
n
c
o
d
ing="UT
F
-
8
"?
>
<
!
D
O
C
TYP
E
plist
PU
B
LI
C
"-//
A
ppl
e
//
D
T
D
PLIST
1
.
0
//
E
N"
"http://www.
a
ppl
e
.
c
om/
D
T
D
s/Prop
e
rtyList-
1
.
0
.
d
t
d
"
>
<
plist
v
e
rsion="
1
.
0
"
>
<
d
i
c
t
>
<
k
e
y
>
IDEDidComputeMac32BitWarning
<
/k
e
y
>
<
tru
e
/
>
<
/
d
i
c
t
>
<
/plist
>
Package.swift
0 → 100644
View file @
6e09a350
// 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"
]),
]
)
Sources/ParentSDKLibrary/ParentSDKLibrary.swift
0 → 100644
View file @
6e09a350
// The Swift Programming Language
// https://docs.swift.org/swift-book
Tests/ParentSDKLibraryTests/ParentSDKLibraryTests.swift
0 → 100644
View file @
6e09a350
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
}
}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment