/
githubmirror
/
origin
Обзор
Документация
Войти
/
githubmirror
/
origin
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
tools/junitreport/pkg/builder/interfaces.go
12 строк
349 B
Vincent Behar
Fix misspells reported by goreportcard.com
31 май 2016, 16:34
Не верифицирован
31 май 2016, 16:34
604ac45
Код
Авторство
О чём код?
package builder import "github.com/openshift/origin/tools/junitreport/pkg/api" // TestSuitesBuilder knows how to aggregate data to form a collection of test suites. type TestSuitesBuilder interface { // AddSuite adds a test suite to the collection AddSuite(suite *api.TestSuite) // Build returns the built structure Build() *api.TestSuites }