micro/server/errors_test.go

20 lines
300 B
Go
Raw Normal View History

package server
import (
"testing"
"go.unistack.org/micro/v3/errors"
)
func TestError(t *testing.T) {
e := NewError("svc1")
err := e.BadRequest("%s", "test")
merr, ok := err.(*errors.Error)
if !ok {
t.Fatal("error not *errors.Error")
}
if merr.ID != "svc1" {
t.Fatal("id != svc1")
}
}