Этот коммит содержится в:
Chris
2017-08-08 17:40:46 -05:00
коммит произвёл GitHub
родитель c42510a7f4
Коммит 6b741c4cea
70 изменённых файлов: 15434 добавлений и 92 удалений

10
vendor/github.com/stretchr/testify/assert/errors.go сгенерированный поставляемый Обычный файл
Просмотреть файл

@@ -0,0 +1,10 @@
package assert
import (
"errors"
)
// AnError is an error instance useful for testing. If the code does not care
// about error specifics, and only needs to return the error for example, this
// error should be used to make the test code more readable.
var AnError = errors.New("assert.AnError general error for testing")