dict: refact test

This commit is contained in:
vinchent 2024-09-11 14:07:00 +02:00
parent 73ab7dc92d
commit dd61fb557b

View File

@ -2,13 +2,19 @@ package dictionary
import "testing"
func assertStrings(t testing.TB, got, want string) {
t.Helper()
if got != want {
t.Errorf("got %q want %q given %q", got, want, "test")
}
}
func TestSearch(t *testing.T) {
dictionary := map[string]string{"test": "this is just a test"}
got := Search(dictionary, "test")
want := "this is just a test"
if got != want {
t.Errorf("got %q want %q given %q", got, want, "test")
}
assertStrings(t, got, want)
}