Recommended
PPTX
PDF
PDF
PPTX
Selenium webdriver使ってみようず
PDF
ホームディレクトリに埋もれた便利なコードをさがせ!
PDF
PDF
PDF
PDF
xUnit Test Patterns - Chapter19
PDF
C# から java へのプログラム移植で体験したtddの効果は?
KEY
PDF
PDF
PDF
『JUnit実践入門』写経・実践会 in 横浜 #2
PDF
PDF
PDF
PDF
PDF
PDF
開発チームのためのコミュニケーションとコンテキストの作り方
PDF
PDF
PDF
PDF
PDF
論文紹介:"MM-Tracker: Motion Mamba for UAV-platform Multiple Object Tracking", "M...
PDF
論文紹介:Simultaneous Detection and Interaction Reasoning for Object-Centric Acti...
PDF
論文紹介:"Reflexion: language agents with verbal reinforcement learning", "MA-LMM...
PDF
手軽に広範囲でプライバシーを守りながら人数カウントできる ~ LoRaWAN AI人流カウンター PF52 日本語カタログ
PDF
How We Operated Ticket-Driven Development in JIRA.pdf
PDF
歴史好きのスクラム話 JBUG名古屋#5 AI時代のデータドリブンなプロジェクト管理
More Related Content
PPTX
PDF
PDF
PPTX
Selenium webdriver使ってみようず
PDF
ホームディレクトリに埋もれた便利なコードをさがせ!
PDF
PDF
PDF
Similar to Junit intro
PDF
xUnit Test Patterns - Chapter19
PDF
C# から java へのプログラム移植で体験したtddの効果は?
KEY
PDF
PDF
PDF
『JUnit実践入門』写経・実践会 in 横浜 #2
PDF
More from Yutaka Kinjyo
PDF
PDF
PDF
PDF
PDF
開発チームのためのコミュニケーションとコンテキストの作り方
PDF
PDF
PDF
PDF
Recently uploaded
PDF
論文紹介:"MM-Tracker: Motion Mamba for UAV-platform Multiple Object Tracking", "M...
PDF
論文紹介:Simultaneous Detection and Interaction Reasoning for Object-Centric Acti...
PDF
論文紹介:"Reflexion: language agents with verbal reinforcement learning", "MA-LMM...
PDF
手軽に広範囲でプライバシーを守りながら人数カウントできる ~ LoRaWAN AI人流カウンター PF52 日本語カタログ
PDF
How We Operated Ticket-Driven Development in JIRA.pdf
PDF
歴史好きのスクラム話 JBUG名古屋#5 AI時代のデータドリブンなプロジェクト管理
PDF
LoRaWAN小売業DXソリューション ~天候データと人流カウンターを利用して売り上げアップに貢献!
Junit intro 1. 2. 3. 4. 5. 6. Add Method Test
@Test
public void addで1と2の加算結果が返却される() {
!
int a = 1;
int b = 2;
int expected = 3;
Calc sut = new Calc();
int actual = sut.add(a,b);
!
assertThat(actual ,is(expected));
テスト結果 Green or Red
7. 8. 9. Add Method
public int add(int a, int b) {
return a - b;
}
public int add(int a, int b) {
return a + b;
}
テスト結果 Green
10. 11. 12. 13. 14. 15. 16. 17. 18. 19. 20. 21. 22. 23. 24. What is TDD ?
http://www.slideshare.net/t_wada/
devlove2012-twada-tdd