blob: 2627d111d8a19aba0c5d81cd50f427b5547c6ec3 [file] [log] [blame]
// RUN: %target-resilience-test
// REQUIRES: executable_test
import StdlibUnittest
import class_remove_property
var ClassRemovePropertyTest = TestSuite("ClassRemoveProperty")
ClassRemovePropertyTest.test("RemoveStoredProperty") {
let dog = RemoveStoredProperty(first: "Barnaby",
middle: "Winston",
last: "Fluffington")
do {
expectEqual(dog.name, "Barnaby Winston Fluffington")
}
}
runAllTests()