mirror of
https://gitee.com/IrisVega/frp.git
synced 2024-11-01 22:31:29 +08:00
17 lines
244 B
Go
17 lines
244 B
Go
package errors
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/stretchr/testify/assert"
|
|
)
|
|
|
|
func TestPanicToError(t *testing.T) {
|
|
assert := assert.New(t)
|
|
|
|
err := PanicToError(func() {
|
|
panic("test error")
|
|
})
|
|
assert.Contains(err.Error(), "test error")
|
|
}
|