(t *testing.T)
| 331 | } |
| 332 | |
| 333 | func TestDay(t *testing.T) { |
| 334 | t.Log("TestDay") |
| 335 | day := Day() |
| 336 | |
| 337 | if !findInSlice(jsonData.Days, day) { |
| 338 | t.Error("Couldnt find day in days") |
| 339 | } |
| 340 | } |
| 341 | |
| 342 | func TestMonth(t *testing.T) { |
| 343 | t.Log("TestMonth") |
nothing calls this directly
no test coverage detected
searching dependent graphs…