fbea88bd74
Signed-off-by: Michael Mayer <michael@liquidbytes.net>
19 lines
263 B
Go
19 lines
263 B
Go
package entity
|
|
|
|
import (
|
|
"bytes"
|
|
"os"
|
|
"testing"
|
|
|
|
"github.com/sirupsen/logrus"
|
|
)
|
|
|
|
var logBuffer bytes.Buffer
|
|
|
|
func TestMain(m *testing.M) {
|
|
log = logrus.StandardLogger()
|
|
log.Out = &logBuffer
|
|
log.SetLevel(logrus.DebugLevel)
|
|
code := m.Run()
|
|
os.Exit(code)
|
|
}
|