Add note about err msg.
This commit is contained in:
parent
39c638aa2f
commit
69abab266c
1 changed files with 3 additions and 0 deletions
|
@ -9,6 +9,9 @@ func RequireEqual(t T, expected, actual interface{}, msgAndArgs ...interface{})
|
||||||
func RequireNotEqual(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) {
|
func TestMath(t *testing.T) {
|
||||||
|
|
Loading…
Reference in a new issue