Skip to content

Commit

Permalink
Merge pull request #7 from freddi-kit/linux-test
Browse files Browse the repository at this point in the history
Add Linux Test
  • Loading branch information
freddi-kit authored Sep 10, 2023
2 parents 0c5cdf2 + 9cd5ab3 commit 58b31fd
Show file tree
Hide file tree
Showing 2 changed files with 26 additions and 0 deletions.
18 changes: 18 additions & 0 deletions Tests/ArtifactBundleGenTests/XCTestManifests.swift
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
#if !canImport(ObjectiveC)
import XCTest

extension ArtifactBundleGenTests {
// DO NOT MODIFY: This is autogenerated, use:
// `swift test --generate-linuxmain`
// to regenerate.
static let __allTests__ArtifactBundleGenTests = [
("testExample", testExample),
]
}

public func __allTests() -> [XCTestCaseEntry] {
return [
testCase(ArtifactBundleGenTests.__allTests__ArtifactBundleGenTests),
]
}
#endif
8 changes: 8 additions & 0 deletions Tests/LinuxMain.swift
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
import XCTest

import ArtifactBundleGenTests

var tests = [XCTestCaseEntry]()
tests += ArtifactBundleGenTests.__allTests()

XCTMain(tests)

0 comments on commit 58b31fd

Please sign in to comment.