1
0
mirror of https://github.com/SAP/jenkins-library.git synced 2024-12-14 11:03:09 +02:00
sap-jenkins-library/pkg/config/errors_test.go

14 lines
205 B
Go
Raw Normal View History

package config
import (
"testing"
"github.com/stretchr/testify/assert"
)
func TestParseError(t *testing.T) {
err := NewParseError("Parsing failed")
assert.Equal(t, "Parsing failed", err.Error())
}