github.com/myafeier/fabric@v1.0.1-0.20170722181825-3a4b1f2bce86/gossip/comm/demux_test.go (about) 1 /* 2 Copyright IBM Corp. All Rights Reserved. 3 4 SPDX-License-Identifier: Apache-2.0 5 */ 6 7 package comm 8 9 import "testing" 10 11 func TestChannelDeMultiplexer_Close(t *testing.T) { 12 demux := NewChannelDemultiplexer() 13 demux.Close() 14 demux.DeMultiplex("msg") 15 }