You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
35 lines
862 B
35 lines
862 B
package errors_test
|
|
|
|
import (
|
|
"github.com/analogj/scrutiny/collector/pkg/errors"
|
|
"github.com/stretchr/testify/require"
|
|
"testing"
|
|
)
|
|
|
|
//func TestCheckErr_WithoutError(t *testing.T) {
|
|
// t.Parallel()
|
|
//
|
|
// //assert
|
|
// require.NotPanics(t, func() {
|
|
// errors.CheckErr(nil)
|
|
// })
|
|
//}
|
|
|
|
//func TestCheckErr_Error(t *testing.T) {
|
|
// t.Parallel()
|
|
//
|
|
// //assert
|
|
// require.Panics(t, func() {
|
|
// errors.CheckErr(stderrors.New("This is an error"))
|
|
// })
|
|
//}
|
|
|
|
func TestErrors(t *testing.T) {
|
|
t.Parallel()
|
|
|
|
//assert
|
|
require.Implements(t, (*error)(nil), errors.ConfigFileMissingError("test"), "should implement the error interface")
|
|
require.Implements(t, (*error)(nil), errors.ConfigValidationError("test"), "should implement the error interface")
|
|
require.Implements(t, (*error)(nil), errors.DependencyMissingError("test"), "should implement the error interface")
|
|
}
|