コード例 #1
0
ファイル: HandlerTest.cs プロジェクト: pngouin/CK-Glouton
        public void ApplyConfiguration()
        {
            var activityMonitor         = new ActivityMonitor();
            var tcpHandlerConfiguration = new TcpHandlerConfiguration();
            var tcpHandler = new TcpHandler(tcpHandlerConfiguration);

            // ApplyConfiguration should always return false for now. Need to think about its implication before implementing.
            tcpHandler.ApplyConfiguration(activityMonitor, tcpHandlerConfiguration).Should().BeFalse();
        }