8
Golang에서지도의 동등성을 테스트하는 방법은 무엇입니까?
다음과 같은 테이블 기반 테스트 케이스가 있습니다. func CountWords(s string) map[string]int func TestCountWords(t *testing.T) { var tests = []struct { input string want map[string]int }{ {"foo", map[string]int{"foo":1}}, {"foo bar foo", map[string]int{"foo":2,"bar":1}}, } for i, c := range tests { got := CountWords(c.input) // TODO test whether c.want == got } …