"Go t.Errorf()"의 두 판 사이의 차이

(새 문서: ==개요== ;Go t.Errorf() <syntaxhighlight lang='go'> package abs import "testing" func TestAbs(t *testing.T) { got := Abs(-1) if got != 1 { t.Errorf("Abs(-1) = %d;...)
 
 
14번째 줄: 14번째 줄:
}
}
</syntaxhighlight>
</syntaxhighlight>
==같이 보기==
* [[Go testing 패키지]]


==참고==
==참고==

2023년 5월 27일 (토) 11:44 기준 최신판

1 개요[ | ]

Go t.Errorf()
package abs

import "testing"

func TestAbs(t *testing.T) {
    got := Abs(-1)
    if got != 1 {
        t.Errorf("Abs(-1) = %d; want 1", got)
    }
}

2 같이 보기[ | ]

3 참고[ | ]

문서 댓글 ({{ doc_comments.length }})
{{ comment.name }} {{ comment.created | snstime }}