Sha256: 673b35bf410ec86707127b164ade831a0a9546e5a884ff5e67af7bd7d27a023b
Contents?: true
Size: 750 Bytes
Versions: 16
Compression:
Stored size: 750 Bytes
Contents
// +build ignore 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
16 entries across 16 versions & 1 rubygems