github.com/true-sqn/fabric@v2.1.1+incompatible/internal/configtxgen/encoder/encoder_suite_test.go (about)

     1  /*
     2  Copyright IBM Corp. All Rights Reserved.
     3  
     4  SPDX-License-Identifier: Apache-2.0
     5  */
     6  
     7  package encoder_test
     8  
     9  import (
    10  	"testing"
    11  
    12  	"github.com/hyperledger/fabric/bccsp/factory"
    13  	. "github.com/onsi/ginkgo"
    14  	. "github.com/onsi/gomega"
    15  )
    16  
    17  func TestEncoder(t *testing.T) {
    18  	factory.InitFactories(nil)
    19  
    20  	RegisterFailHandler(Fail)
    21  	RunSpecs(t, "Encoder Suite")
    22  }