mirror of
https://github.com/zitadel/zitadel.git
synced 2024-12-12 02:54:20 +00:00
20 lines
463 B
Go
20 lines
463 B
Go
package errors_test
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/stretchr/testify/assert"
|
|
|
|
caos_errs "github.com/caos/zitadel/internal/errors"
|
|
)
|
|
|
|
func TestErrorMethod(t *testing.T) {
|
|
err := caos_errs.ThrowError(nil, "id", "msg")
|
|
expected := "ID=id Message=msg"
|
|
assert.Equal(t, expected, err.Error())
|
|
|
|
err = caos_errs.ThrowError(err, "subID", "subMsg")
|
|
subExptected := "ID=subID Message=subMsg Parent=(ID=id Message=msg)"
|
|
assert.Equal(t, subExptected, err.Error())
|
|
}
|