Files
swift-mirror/validation-test/Evolution/test_class_remove_property.swift
Arnold Schwaighofer 127b2ab939 Remove the remaining swift_test_mode_optimize_none_with_implicit_dynamic
It is expected that under enable-private-import internal/private symbols
become public. So that symbol-diffing would fail. Disable symbol diffing
under that test mode.

rdar://51304243
2019-06-12 15:54:49 -07:00

21 lines
477 B
Swift

// 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()