mirror of
https://github.com/zitadel/zitadel.git
synced 2025-08-12 18:37:32 +00:00
chore: move the go code into a subfolder
This commit is contained in:
33
apps/api/internal/zerrors/generate/error_test.go.tmpl
Normal file
33
apps/api/internal/zerrors/generate/error_test.go.tmpl
Normal file
@@ -0,0 +1,33 @@
|
||||
package errors_test
|
||||
|
||||
import (
|
||||
"errors"
|
||||
"testing"
|
||||
|
||||
"github.com/stretchr/testify/assert"
|
||||
|
||||
"github.com/zitadel/zitadel/internal/zerrors"
|
||||
)
|
||||
|
||||
func Test{{.ErrorName}}Error(t *testing.T) {
|
||||
var err interface{}
|
||||
err = new(zerrors.{{.ErrorName}}Error)
|
||||
_, ok := err.(*zerrors.{{.ErrorName}})
|
||||
assert.True(t, ok)
|
||||
}
|
||||
|
||||
func TestThrow{{.ErrorName}}f(t *testing.T) {
|
||||
err := zerrors.Throw{{.ErrorName}}f(nil, "id", "msg")
|
||||
_, ok := err.(*zerrors.{{.ErrorName}}Error)
|
||||
assert.True(t, ok)
|
||||
}
|
||||
|
||||
func TestIs{{.ErrorName}}(t *testing.T) {
|
||||
err := zerrors.Throw{{.ErrorName}}(nil, "id", "msg")
|
||||
ok := zerrors.Is{{.ErrorName}}(err)
|
||||
assert.True(t, ok)
|
||||
|
||||
err = errors.New("I am found!")
|
||||
ok = zerrors.Is{{.ErrorName}}(err)
|
||||
assert.False(t, ok)
|
||||
}
|
Reference in New Issue
Block a user