docker-compose-files/hyperledger_fabric/latest/chaincodes/go/cc02_mockTest
Baohua Yang 495a6c87ef Fix cc pkg path with Go 1.14 2020-12-07 13:33:08 -08:00
..
README.md Fix cc pkg path with Go 1.14 2020-12-07 13:33:08 -08:00
cc_test.go Fix cc pkg path with Go 1.14 2020-12-07 13:33:08 -08:00
chaincode_example02.go Fix cc pkg path with Go 1.14 2020-12-07 13:33:08 -08:00

README.md

Debug Chaincode with MockShim

Baohua Yang, 2019-01-17

The package will demonstrate how to debug the chaincode with the MockShim lib.

This way is more efficient and quick to debug locally without any fabric network setup.

Usage

Unzip the package and enter the package path, then run

# Regular testing should return OK
$ go test .

# Debug with more logs output
$ go test -v .

Files

  • chaincode_example02.go: example02 chaincode from HLF repo;
  • cc_test.go: test code to verify the example02 chaincode logic.