Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/bgpat/matrixtest

matrixtest is a Go testing package with matrixed testcases
https://github.com/bgpat/matrixtest

Last synced: about 2 months ago
JSON representation

matrixtest is a Go testing package with matrixed testcases

Awesome Lists containing this project

README

        

# matrixtest

Package matrixtest provides tools for testing with matrixed testcases.

## Installation

```bash
go get -u github.com/bgpat/matrixtest
```

## Usage

```go
func Test(t *testing.T) {
type testcase struct {
Bool bool
Int int
String string
Pointer *struct{}
Slice []byte
}
testcases := map[string]interface{}{
"bool": testcase{Bool: true},
"int": testcase{Int: 1},
"string": testcase{String: "test"},
"pointer": testcase{Pointer: &struct{}{}},
"slice": testcase{Slice: []byte("test")},
}
matrixtest.Run(t, testcases, func(testcase interface{}) func(t *testing.T) {
return func(t *testing.T) {
t.Log(testcase)
}
})
}
```