blob: f17ff153e1406c90a880e0fc6290b27f87ee2028 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
package testify
import (
"testing"
"github.com/stretchr/testify/assert"
)
func TestImports(t *testing.T) {
if assert.Equal(t, 1, 1) != true {
t.Error("Something is wrong.")
}
}
|