(t *testing.T)
| 83 | } |
| 84 | |
| 85 | func TestBytesStringBase10(t *testing.T) { |
| 86 | for i, c := range base10Cases { |
| 87 | t.Run(fmt.Sprint(i, "-", c.value), func(t *testing.T) { |
| 88 | actual := BytesStringBase10(c.value) |
| 89 | require.Equal(t, c.expected, actual) |
| 90 | }) |
| 91 | } |
| 92 | } |
| 93 | |
| 94 | func TestBytesStringBase2(t *testing.T) { |
| 95 | for i, c := range base2Cases { |
nothing calls this directly
no test coverage detected