(t *testing.T)
| 505 | } |
| 506 | |
| 507 | func TestBool(t *testing.T) { |
| 508 | testType(t, &Tbool{}, &Xbool{}) |
| 509 | testExpectedXValBare(t, |
| 510 | true, |
| 511 | `null`, |
| 512 | &Xbool{X: true}) |
| 513 | } |
| 514 | |
| 515 | func TestInt(t *testing.T) { |
| 516 | testType(t, &Tint{}, &Xint{}) |
nothing calls this directly
no test coverage detected
searching dependent graphs…