Sha256: fe912d6706b6ce2fe3b14319154aa7818651acec28f4715dfa13722077bd59b4
Contents?: true
Size: 732 Bytes
Versions: 140
Compression:
Stored size: 732 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("largest-series-product", &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 Digits string Span int Expected int64 } } // template applied to above data structure generates the Go test cases var tmpl = `package lsproduct {{.Header}} var tests = []struct { digits string span int product int64 ok bool }{ {{range .J.Cases}}{ "{{.Digits}}", {{.Span}}, {{.Expected}}, {{ge .Expected 0}}}, {{end}}} `
Version data entries
140 entries across 140 versions & 1 rubygems