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