Sha256: 491a3d5a1af37cc5c8c5d7fc533757272e3616f9f43ed08a3c9356fd62373c90
Contents?: true
Size: 729 Bytes
Versions: 108
Compression:
Stored size: 729 Bytes
Contents
package main import ( "log" "text/template" "../../../gen" ) func main() { t, err := template.New("").Parse(tmpl) if err != nil { log.Fatal(err) } var j js if err := gen.Gen("hamming", &j, t); err != nil { log.Fatal(err) } } // The JSON structure we expect to be able to unmarshal into type js struct { Cases []struct { Description string Strand1 string Strand2 string Expected int } } // template applied to above data structure generates the Go test cases var tmpl = `package hamming {{.Header}} var testCases = []struct { s1 string s2 string want int }{ {{range .J.Cases}}{ // {{.Description}} {{printf "%q" .Strand1}}, {{printf "%q" .Strand2}}, {{.Expected}}, }, {{end}}} `
Version data entries
108 entries across 108 versions & 1 rubygems