genofire/hs_monolith
genofire
/
hs_monolith
Archived
1
0
Fork 0

[TASK] add automatic testing

This commit is contained in:
Martin Geno 2017-03-25 14:39:50 +01:00
parent a0fefd4da2
commit 597c2b5610
No known key found for this signature in database
GPG Key ID: F0D39A37E925E941
3 changed files with 14 additions and 1 deletions

0
.test-coverage Normal file → Executable file
View File

View File

@ -3,3 +3,4 @@ https://gitlab.com/matthiasstock/monolith
[![Build Status](https://travis-ci.org/genofire/hs_master-kss-monolith.svg?branch=master)](https://travis-ci.org/genofire/hs_master-kss-monolith) [![Build Status](https://travis-ci.org/genofire/hs_master-kss-monolith.svg?branch=master)](https://travis-ci.org/genofire/hs_master-kss-monolith)
[![Coverage Status](https://coveralls.io/repos/github/genofire/hs_master-kss-monolith/badge.svg?branch=master)](https://coveralls.io/github/genofire/hs_master-kss-monolith?branch=master)

View File

@ -0,0 +1,12 @@
package main
import (
"testing"
"github.com/stretchr/testify/assert"
)
func TestNothing(t *testing.T) {
assert := assert.New(t)
assert.True(true, "test testing")
}