add error pkg

This commit is contained in:
Livio Amstutz
2020-03-18 15:45:24 +01:00
parent f8fdbb0611
commit 238347ddfb
30 changed files with 978 additions and 0 deletions

View File

@@ -0,0 +1,19 @@
package errors_test
import (
"testing"
"github.com/stretchr/testify/assert"
caos_errs "github.com/caos/utils/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())
}