(t *testing.T)
| 103 | } |
| 104 | |
| 105 | func TestSelectRecord(t *testing.T) { |
| 106 | if strings.Compare(selectRecord(0), "hello world") != 0 { |
| 107 | t.Error("it should be hello world") |
| 108 | } |
| 109 | } |
| 110 | |
| 111 | func TestCheckValid(t *testing.T) { |
| 112 | if !CheckValid(answers) { |
nothing calls this directly
no test coverage detected