Skip to content

Commit db25103

Browse files
authored
Add an umbrella import to the _TestingInternals module map file. (#431)
This PR removes the individual header declarations from the `_TestingInternals` module map file and replaces them with a single umbrella import. This fixes an existing workflow used by some of our teammates. ### Checklist: - [x] Code and documentation should follow the style of the [Style Guide](https://github.com/apple/swift-testing/blob/main/Documentation/StyleGuide.md). - [x] If public symbols are renamed or modified, DocC references should be updated.
1 parent 935d6a7 commit db25103

File tree

1 file changed

+11
-7
lines changed

1 file changed

+11
-7
lines changed
Lines changed: 11 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,14 @@
1+
//
2+
// This source file is part of the Swift.org open source project
3+
//
4+
// Copyright (c) 2024 Apple Inc. and the Swift project authors
5+
// Licensed under Apache License v2.0 with Runtime Library Exception
6+
//
7+
// See https://swift.org/LICENSE.txt for license information
8+
// See https://swift.org/CONTRIBUTORS.txt for Swift project authors
9+
//
10+
111
module _TestingInternals {
2-
header "Defines.h"
3-
header "Discovery.h"
4-
header "GetSymbol.h"
5-
header "Includes.h"
6-
header "Stubs.h"
7-
header "TestSupport.h"
8-
header "WillThrow.h"
12+
umbrella "."
913
export *
1014
}

0 commit comments

Comments
 (0)