mirror of
https://github.com/apple/swift.git
synced 2025-12-14 20:36:38 +01:00
22 lines
426 B
Swift
22 lines
426 B
Swift
// RUN: %target-run-simple-swift
|
|
// REQUIRES: executable_test
|
|
|
|
import StdlibUnittest
|
|
|
|
let OneTests = TestSuite("CollectionOfOne")
|
|
OneTests.test("Basic tests") {
|
|
let two = CollectionOfOne(2)
|
|
expectEqual(1, two.count)
|
|
for x in two {
|
|
expectEqual(2, x)
|
|
}
|
|
|
|
let twentyOne = CollectionOfOne(21)
|
|
expectEqual(1, twentyOne.count)
|
|
for x in twentyOne.indices {
|
|
expectEqual(42, twentyOne[x] * 2)
|
|
}
|
|
}
|
|
|
|
runAllTests()
|