(repo repository.ClockedRepo, bugNumber int)
| 31 | } |
| 32 | |
| 33 | func FillRepo(repo repository.ClockedRepo, bugNumber int) { |
| 34 | FillRepoWithSeed(repo, bugNumber, time.Now().UnixNano()) |
| 35 | } |
| 36 | |
| 37 | func FillRepoWithSeed(repo repository.ClockedRepo, bugNumber int, seed int64) { |
| 38 | options := DefaultOptions() |
nothing calls this directly
no test coverage detected