hello/hello_test.go
2025-06-06 22:27:43 +02:00

14 lines
217 B
Go

package main
import (
"testing"
"github.com/test-go/testify/require"
)
func Test_getGreeting(t *testing.T) {
t.Run("success", func(t *testing.T) {
require.Equal(t, "Hello, World!", getGreeting("World"))
})
}