(t *testing.T)
| 147 | } |
| 148 | |
| 149 | func TestEmail(t *testing.T) { |
| 150 | t.Log("TestEmail") |
| 151 | email := Email() |
| 152 | |
| 153 | if email == "" { |
| 154 | t.Error("Failed to generate email with content") |
| 155 | } |
| 156 | |
| 157 | } |
| 158 | |
| 159 | func TestCountry(t *testing.T) { |
| 160 | t.Log("TestCountry") |
nothing calls this directly
no test coverage detected
searching dependent graphs…