13 lines
150 B
Go
13 lines
150 B
Go
package test
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/stretchr/testify/require"
|
|
)
|
|
|
|
func TestDummy(t *testing.T) {
|
|
var err error
|
|
require.NoError(t, err)
|
|
}
|