boa noite,
ao executar o comando go test ele me retornar no test files,
Contudo ao especificar o caminho dele detalhado do teste ele da OK
nome da classe service_test.go
package service
import (
"testing"
"reflect"
"app/model"
)
func TestAlreadyExist(t *testing.T) {
name := "bruno"
arr := []string{"bruno", "carlos"}
expeted := alreadyExist(name, arr)
if !expeted {
t.Errorf("Esperava receber verdadeiro porem recebi falso")
}
}