Skip to content

Commit ddbe6fc

Browse files
committed
[FAB-9613] Replace launcher with ContainerRuntime
Change-Id: Ic8023ec2f1661f67c8c34dd83ac12ba1e3b7b890 Signed-off-by: Matthew Sykes <sykesmat@us.ibm.com>
1 parent 3978987 commit ddbe6fc

8 files changed

+1131
-244
lines changed

core/chaincode/chaincode_suite_test.go

+15
Original file line numberDiff line numberDiff line change
@@ -34,3 +34,18 @@ type historyQueryExecutor interface {
3434
type resultsIterator interface {
3535
commonledger.ResultsIterator
3636
}
37+
38+
//go:generate counterfeiter -o mock/runtime.go --fake-name Runtime . chaincodeRuntime
39+
type chaincodeRuntime interface {
40+
Runtime
41+
}
42+
43+
//go:generate counterfeiter -o mock/cert_generator.go --fake-name CertGenerator . certGenerator
44+
type certGenerator interface {
45+
CertGenerator
46+
}
47+
48+
//go:generate counterfeiter -o mock/processor.go --fake-name Processor . processor
49+
type processor interface {
50+
Processor
51+
}

0 commit comments

Comments
 (0)