File tree 8 files changed +8
-6
lines changed
Sources/OpenAPIRuntime/Conversion
Tests/OpenAPIRuntimeTests
8 files changed +8
-6
lines changed Original file line number Diff line number Diff line change @@ -45,6 +45,7 @@ extension ParameterStyle {
45
45
46
46
/// Returns the default value of the explode field for the given style
47
47
/// - Parameter style: The parameter style.
48
+ /// - Returns: The explode value.
48
49
static func defaultExplodeFor( forStyle style: ParameterStyle ) -> Bool {
49
50
style == . form
50
51
}
Original file line number Diff line number Diff line change 12
12
//
13
13
//===----------------------------------------------------------------------===//
14
14
import XCTest
15
- @_spi ( Generated) @testable import OpenAPIRuntime
15
+ @_spi ( Generated) @testable import OpenAPIRuntime
16
16
17
17
final class Test_OpenAPIValue : Test_Runtime {
18
18
Original file line number Diff line number Diff line change 12
12
//
13
13
//===----------------------------------------------------------------------===//
14
14
import XCTest
15
- @_spi ( Generated) @testable import OpenAPIRuntime
15
+ @_spi ( Generated) @testable import OpenAPIRuntime
16
16
17
17
final class Test_Deprecated : Test_Runtime {
18
18
// Tests for deprecated code goes here.
Original file line number Diff line number Diff line change 12
12
//
13
13
//===----------------------------------------------------------------------===//
14
14
import XCTest
15
- @_spi ( Generated) @testable import OpenAPIRuntime
15
+ @_spi ( Generated) @testable import OpenAPIRuntime
16
16
import Foundation
17
17
18
18
final class Test_Body : Test_Runtime {
Original file line number Diff line number Diff line change 12
12
//
13
13
//===----------------------------------------------------------------------===//
14
14
import XCTest
15
- @_spi ( Generated) @testable import OpenAPIRuntime
15
+ @_spi ( Generated) @testable import OpenAPIRuntime
16
16
17
17
final class Test_UniversalServer : Test_Runtime {
18
18
Original file line number Diff line number Diff line change @@ -18,6 +18,7 @@ import HTTPTypes
18
18
19
19
class Test_Runtime : XCTestCase {
20
20
21
+ /// Setup method called before the invocation of each test method in the class.
21
22
override func setUp( ) async throws {
22
23
try await super. setUp ( )
23
24
continueAfterFailure = false
Original file line number Diff line number Diff line change 12
12
//
13
13
//===----------------------------------------------------------------------===//
14
14
import XCTest
15
- @_spi ( Generated) @testable import OpenAPIRuntime
15
+ @_spi ( Generated) @testable import OpenAPIRuntime
16
16
#if os(Linux)
17
17
@preconcurrency import Foundation
18
18
#endif
Original file line number Diff line number Diff line change @@ -17,7 +17,7 @@ RUN mkdir -p $HOME/.tools
17
17
RUN echo 'export PATH="$HOME/.tools:$PATH"' >> $HOME/.profile
18
18
19
19
# swift-format
20
- ARG swiftformat_version=508 .0.0
20
+ ARG swiftformat_version=509 .0.0
21
21
RUN git clone --branch $swiftformat_version --depth 1 https://github.com/apple/swift-format $HOME/.tools/swift-format-source
22
22
RUN cd $HOME/.tools/swift-format-source && swift build -c release
23
23
RUN ln -s $HOME/.tools/swift-format-source/.build/release/swift-format $HOME/.tools/swift-format
You can’t perform that action at this time.
0 commit comments