Sha256: 0ce56b1a063129049bd9d8374d8dd8705bd5298a75c4c179cffe10ba45df8de1
Contents?: true
Size: 760 Bytes
Versions: 82
Compression:
Stored size: 760 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 Input struct { 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}}{ "{{.Input.Digits}}", {{.Input.Span}}, {{.Expected}}, {{ge .Expected 0}}}, {{end}}} `
Version data entries
82 entries across 82 versions & 1 rubygems