(t *testing.T)
| 93 | } |
| 94 | |
| 95 | func TestLastName(t *testing.T) { |
| 96 | t.Log("TestLastName") |
| 97 | lastName := LastName() |
| 98 | |
| 99 | if !findInSlice(jsonData.LastNames, lastName) { |
| 100 | t.Error("lastName empty or not in slice") |
| 101 | } |
| 102 | } |
| 103 | |
| 104 | func TestFullName(t *testing.T) { |
| 105 | t.Log("TestFullName") |
nothing calls this directly
no test coverage detected
searching dependent graphs…