go-zero/core/iox/nopcloser_test.go
2023-09-16 22:33:30 +08:00

13 lines
173 B
Go

package iox
import (
"testing"
"github.com/stretchr/testify/assert"
)
func TestNopCloser(t *testing.T) {
closer := NopCloser(nil)
assert.NoError(t, closer.Close())
}