mirror of
https://github.com/SAP/jenkins-library.git
synced 2024-12-12 10:55:20 +02:00
c1eb9f5c70
* Provide first parts for golang implementation
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())
|
|
}
|