Skip to content

[CM -754] created swift package YCatalogViewer #1

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 3 commits into from
Jul 21, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
35 changes: 35 additions & 0 deletions Package.swift
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
// swift-tools-version: 5.6
// The swift-tools-version declares the minimum version of Swift required to build this package.

import PackageDescription

let package = Package(
name: "YCatalogViewer",
platforms: [
// The minimum version for platforms supported by the package.
.iOS(.v14)
],
products: [
// Products define the executables and libraries a package produces, and make them visible to other packages.
.library(
name: "YCatalogViewer",
targets: ["YCatalogViewer"]
)
],
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 this package depends on.
.target(
name: "YCatalogViewer",
dependencies: []
),
.testTarget(
name: "YCatalogViewerTests",
dependencies: ["YCatalogViewer"]
)
]
)
8 changes: 8 additions & 0 deletions Sources/YCatalogViewer/YCatalogViewer.swift
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
/// YCatalogViewer struct
public struct YCatalogViewer {
public private(set) var text = "Hello, World!"

/// init method to intialize instance of struct
public init() {
}
}
11 changes: 11 additions & 0 deletions Tests/YCatalogViewerTests/YCatalogViewerTests.swift
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
import XCTest
@testable import YCatalogViewer

final class YCatalogViewerTests: XCTestCase {
func testExample() throws {
// This is an example of a functional test case.
// Use XCTAssert and related functions to verify your tests produce the correct
// results.
XCTAssertEqual(YCatalogViewer().text, "Hello, World!")
}
}