wheat-cache/pkg/lru/test/HelloTest.go

12 lines
160 B
Go

package test
import (
"github.com/stretchr/testify/require"
"testing"
)
func TestHello(t *testing.T) {
_, err := Hello("Hello")
require.NoError(t, err)
}