mirror of
https://github.com/apple/swift.git
synced 2025-12-14 20:36:38 +01:00
18 lines
303 B
Swift
18 lines
303 B
Swift
// RUN: %target-run-simple-swift
|
|
// REQUIRES: executable_test
|
|
|
|
import StdlibUnittest
|
|
|
|
|
|
//
|
|
// Test that harness runs no tests and succeeds when runNoTests() is called.
|
|
//
|
|
|
|
var RunNoTestsTestSuite = TestSuite("RunNoTests")
|
|
|
|
RunNoTestsTestSuite.test("Don'tRunThis") {
|
|
expectUnreachable()
|
|
}
|
|
|
|
runNoTests()
|