Skip to content

Commit

Permalink
Merge "FAB-11519 Create new SCC for new lifecycle"
Browse files Browse the repository at this point in the history
  • Loading branch information
yacovm authored and Gerrit Code Review committed Aug 17, 2018
2 parents a2f9c97 + 75fac16 commit c44c728
Show file tree
Hide file tree
Showing 6 changed files with 2,053 additions and 1 deletion.
26 changes: 26 additions & 0 deletions core/chaincode/lifecycle/lifecycle_suite_test.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
/*
Copyright IBM Corp. All Rights Reserved.
SPDX-License-Identifier: Apache-2.0
*/

package lifecycle_test

import (
"testing"

. "github.com/onsi/ginkgo"
. "github.com/onsi/gomega"

"github.com/hyperledger/fabric/core/chaincode/shim"
)

//go:generate counterfeiter -o mock/chaincode_stub.go --fake-name ChaincodeStub . chaincodeStub
type chaincodeStub interface {
shim.ChaincodeStubInterface
}

func TestLifecycle(t *testing.T) {
RegisterFailHandler(Fail)
RunSpecs(t, "Lifecycle Suite")
}
Loading

0 comments on commit c44c728

Please sign in to comment.