Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/debug-ing/benchmark-test-go

sample benchmark test in golang
https://github.com/debug-ing/benchmark-test-go

Last synced: 7 days ago
JSON representation

sample benchmark test in golang

Awesome Lists containing this project

README

        

# Benchmark Testing in go

A simple code and ci for benchmark test in golang

## Run
without benchmem
```bash
go test -bench=.
```

with benchmem
```bash
go test -bench=. -benchmem
```