github.com/sykesm/fabric@v1.1.0-preview.0.20200129034918-2aa12b1a0181/common/channelconfig/consortiums_test.go (about) 1 /* 2 Copyright IBM Corp. All Rights Reserved. 3 4 SPDX-License-Identifier: Apache-2.0 5 */ 6 package channelconfig 7 8 import ( 9 "testing" 10 11 cb "github.com/hyperledger/fabric-protos-go/common" 12 "github.com/stretchr/testify/assert" 13 ) 14 15 func TestConsortiums(t *testing.T) { 16 _, err := NewConsortiumsConfig(&cb.ConfigGroup{}, nil) 17 assert.NoError(t, err) 18 }