testutil_test.go 138 B

1234567891011
  1. package testutil
  2. import (
  3. "testing"
  4. "github.com/stretchr/testify/assert"
  5. )
  6. func TestInTest(t *testing.T) {
  7. assert.True(t, InTest)
  8. }