mirror of
https://github.com/apple/swift.git
synced 2025-12-14 20:36:38 +01:00
18 lines
295 B
Swift
18 lines
295 B
Swift
// RUN: %target-resilience-test
|
|
// REQUIRES: executable_test
|
|
|
|
import StdlibUnittest
|
|
import move_method_to_extension
|
|
|
|
|
|
var MoveMethodToExtensionTest = TestSuite("MoveMethodToExtension")
|
|
|
|
MoveMethodToExtensionTest.test("MoveMethodToExtension") {
|
|
Rain().doIt()
|
|
Snow().doIt()
|
|
|
|
}
|
|
|
|
runAllTests()
|
|
|