We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 94e47a4 commit c6f7a4fCopy full SHA for c6f7a4f
Tests/FoundationEssentialsTests/DataLegacyABITests.swift
@@ -14,11 +14,15 @@
14
@_spi(FoundationLegacyABI) @testable import Foundation
15
import Testing
16
17
-@Test func validateLegacyABI() {
18
- var data = Data()
+@Suite("Foundation Legacy ABI")
+private final class FoundationLegacyABITests {
19
20
- data._legacy_withUnsafeBytes { _ in }
21
- data._legacy_withUnsafeMutableBytes { _ in }
+ @Test func validateDataLegacyABI() {
+ var data = Data()
22
+
23
+ data._legacy_withUnsafeBytes { _ in }
24
+ data._legacy_withUnsafeMutableBytes { _ in }
25
+ }
26
}
27
28
#endif // FOUNDATION_FRAMEWORK
0 commit comments