Use the following guide to install Go - https://golang.org/doc/install
git clone [email protected]:oneshadab/hariken.git
cd hariken
go install .
hariken [command]
Valid values for command
:
startServerAndConnect
(default) - creates a server and connects to itconnect
- connects to a running server using the default connection stringstartServer
- creates a server that can be connected to with connection string
go test -v -coverpkg=./... -coverprofile=profile.cov ./...
# Coverage in CLI
go tool cover -func profile.cov
# Coverage in Browser
go tool cover -html=profile.cov