Newer
Older
pokemon-go-trade / vendor / github.com / stretchr / testify / package_test.go
Simon Lindgren on 12 Feb 2021 186 bytes first commit
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.")
	}
}