(t *testing.T)
| 60 | } |
| 61 | |
| 62 | func TestMustParseBig256(t *testing.T) { |
| 63 | defer func() { |
| 64 | if recover() == nil { |
| 65 | t.Error("MustParseBig should've panicked") |
| 66 | } |
| 67 | }() |
| 68 | MustParseBig256("ggg") |
| 69 | } |
| 70 | |
| 71 | func TestBigMax(t *testing.T) { |
| 72 | a := big.NewInt(10) |
nothing calls this directly
no test coverage detected