package_test.go 185 B

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