(t *testing.T)
| 112 | } |
| 113 | |
| 114 | func TestBytesString_base2EnvTrue(t *testing.T) { |
| 115 | t.Setenv(bytesStringBase2Envar, "true") |
| 116 | |
| 117 | for i, c := range base2Cases { |
| 118 | t.Run(fmt.Sprint(i, "-", c.value), func(t *testing.T) { |
| 119 | actual := BytesString(c.value) |
| 120 | require.Equal(t, c.expected, actual) |
| 121 | }) |
| 122 | } |
| 123 | } |
nothing calls this directly
no test coverage detected