Add note about err msg.

This commit is contained in:
Arseny Balobanov 2020-03-21 03:32:54 +03:00
parent 39c638aa2f
commit 69abab266c

View file

@ -9,6 +9,9 @@ func RequireEqual(t T, expected, actual interface{}, msgAndArgs ...interface{})
func RequireNotEqual(t T, expected, actual interface{}, msgAndArgs ...interface{})
```
Функции проверяют на равенство expected и actual и завершают тест, если проверка не прошла.
msgAndArgs попадают в описание ошибки через fmt.Sprintf.
Пример использования:
```
func TestMath(t *testing.T) {