github.com/kaituanwang/hyperledger@v2.0.1+incompatible/orderer/consensus/etcdraft/etcdraft_suite_test.go (about) 1 /* 2 Copyright IBM Corp. All Rights Reserved. 3 4 SPDX-License-Identifier: Apache-2.0 5 */ 6 package etcdraft_test 7 8 import ( 9 "testing" 10 11 . "github.com/onsi/ginkgo" 12 . "github.com/onsi/gomega" 13 ) 14 15 var testingInstance *testing.T 16 17 func TestEtcdraft(t *testing.T) { 18 testingInstance = t 19 RegisterFailHandler(Fail) 20 RunSpecs(t, "Etcdraft Suite") 21 }