LearnGO/go/pkg/mod/github.com/stretchr/testify@v1.9.0/package_test.go
2024-09-19 21:38:24 -04:00

14 lines
186 B
Go

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.")
}
}