Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我们的应用程序是使用 Netty 4 websockets 构建的。我们正在尝试编写单元测试用例。在那个过程中,我们想模拟 ChannelHandlerContext、Channel、PipeLine 等。有人可以建议如何做到这一点吗?
谢谢
我认为你应该只使用 EmbeddedChannel 来测试你的 ChannelHandlers。请参阅 Netty 中包含的其他测试如何执行此操作。