mirror of
https://github.com/zeromicro/go-zero.git
synced 2026-05-08 15:39:59 +08:00
16 lines
211 B
Go
16 lines
211 B
Go
|
|
package errorx
|
||
|
|
|
||
|
|
import (
|
||
|
|
"errors"
|
||
|
|
"testing"
|
||
|
|
|
||
|
|
"github.com/stretchr/testify/assert"
|
||
|
|
)
|
||
|
|
|
||
|
|
func TestWrap(t *testing.T) {
|
||
|
|
err := errors.New("foo")
|
||
|
|
err = Wrap(err)
|
||
|
|
_, ok := err.(*GoctlError)
|
||
|
|
assert.True(t, ok)
|
||
|
|
}
|