Cuckoo/Tests/Swift/Source/ExcludedTestClass.swift

19 lines
193 B
Swift

class ExcludedTestClass {
func shouldNotBeAvailable() {
}
}
class IncludedTestClass {
func shouldExist() {
}
}
protocol IncludedProtocol {}
protocol ExcludedProtocol {}