Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/dynastymasra/gounittesting
Golang (Go Programming Language) Unit Testing TDD(Test Driven Development)
https://github.com/dynastymasra/gounittesting
Last synced: about 2 months ago
JSON representation
Golang (Go Programming Language) Unit Testing TDD(Test Driven Development)
- Host: GitHub
- URL: https://github.com/dynastymasra/gounittesting
- Owner: dynastymasra
- License: mit
- Created: 2015-11-09T08:49:53.000Z (about 9 years ago)
- Default Branch: master
- Last Pushed: 2015-11-09T08:52:20.000Z (about 9 years ago)
- Last Synced: 2023-03-14T08:10:25.543Z (almost 2 years ago)
- Language: Go
- Size: 0 Bytes
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Go Unit Testing
Golang (Go Programming Language) Unit Testing TDD(Test Driven Development)can view in tour.golang
full documentation in golang.org
#### Golang workspaces
* bin/
* pkg/
* src/#### GOPATH environment varibale
* $ export GOPATH=$HOME/workspaces
* $ export PATH=$PATH:$GOPATH/bin#### Import library
* mkdir $GOPATH/src/github.com/dynastymasra/package_name or library_name
* go build github.com/dynastymasra/package_name or library_name < This won't produce an output file
* go install github.com/dynastymasra/package_name or library_name