grim/resticide

940c4cf5c4fb
Lots of other goodies trying to get schema validation going
package main
type Reporter interface {
Start(tests int)
TestStart(test Test)
TestFinish(test Test, res TestResult)
Finish(tests int, passed int, failed int)
}