mirror of
https://github.com/SAP/jenkins-library.git
synced 2025-02-07 13:42:23 +02:00
14 lines
205 B
Go
14 lines
205 B
Go
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())
|
|
}
|