nopcloser_test.go 173 B

123456789101112
  1. package iox
  2. import (
  3. "testing"
  4. "github.com/stretchr/testify/assert"
  5. )
  6. func TestNopCloser(t *testing.T) {
  7. closer := NopCloser(nil)
  8. assert.NoError(t, closer.Close())
  9. }