(t *testing.T)
| 217 | } |
| 218 | |
| 219 | func TestBool(t *testing.T) { |
| 220 | t.Log("TestBool") |
| 221 | booleanVal := Boolean() |
| 222 | if booleanVal != true && booleanVal != false { |
| 223 | t.Error("Bool was wrong format") |
| 224 | } |
| 225 | } |
| 226 | |
| 227 | func TestState(t *testing.T) { |
| 228 | t.Log("TestState") |
nothing calls this directly
no test coverage detected
searching dependent graphs…