swift-nio/Tests/NIOPosixTests/TypeAssistedChannelHandlerT...

31 lines
1.0 KiB
Swift

//===----------------------------------------------------------------------===//
//
// This source file is part of the SwiftNIO open source project
//
// Copyright (c) 2017-2021 Apple Inc. and the SwiftNIO project authors
// Licensed under Apache License v2.0
//
// See LICENSE.txt for license information
// See CONTRIBUTORS.txt for the list of SwiftNIO project authors
//
// SPDX-License-Identifier: Apache-2.0
//
//===----------------------------------------------------------------------===//
import XCTest
import NIOCore
class TypeAssistedChannelHandlerTest: XCTestCase {
func testCanDefineBothInboundAndOutbound() throws {
class TestClass: ChannelDuplexHandler {
public typealias OutboundIn = ByteBuffer
public typealias OutboundOut = ByteBuffer
public typealias InboundIn = ByteBuffer
public typealias InboundOut = ByteBuffer
}
// This test really just confirms that compilation works: no need to run any code.
XCTAssert(true)
}
}