multi-image-comparer
Technologies used
Please check the TechStack.md file for details.
How to build
go get -t -v github.com/stretchr/testify/assert
Check that the GO properties are correctly set:
1. MAC-OS
GOPATH=/Users/<username>/go
GOROOT=/usr/local/opt/go/libexec
GO111MODULE=auto
GO111MODULE can be unset in most test cases.
How to run
Go to points directory:
cd pearson-correlation-coefficient
or
cd pearson-correlation-coefficient
1. Test
go test
2. Coverage
go test --cover
3. Coverage with .out file
go test -coverprofile=coverage.out
4. Coverage with .html file
go test -coverprofile=coverage.out && go tool cover -html=coverage.out
How to install Go Lang
brew install golang
References
About me