Skip to content

Commit

Permalink
Added linuxmain
Browse files Browse the repository at this point in the history
  • Loading branch information
samdeane committed Jun 19, 2019
1 parent 671cdc1 commit bf8e878
Show file tree
Hide file tree
Showing 2 changed files with 27 additions and 0 deletions.
19 changes: 19 additions & 0 deletions Tests/CommandShellTests/XCTestManifests.swift
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
#if !canImport(ObjectiveC)
import XCTest

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

public func __allTests() -> [XCTestCaseEntry] {
return [
testCase(CommandShellTests.__allTests__CommandShellTests),
]
}
#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 CommandShellTests

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

XCTMain(tests)

0 comments on commit bf8e878

Please sign in to comment.