Upgrade to Pro
— share decks privately, control downloads, hide ads and more …
Speaker Deck
Features
Speaker Deck
PRO
Sign in
Sign up for free
Search
Search
Test Driven Development
Search
Anıl Selim Sürmeli
July 29, 2015
Programming
0
66
Test Driven Development
Anıl Selim Sürmeli
July 29, 2015
Tweet
Share
More Decks by Anıl Selim Sürmeli
See All by Anıl Selim Sürmeli
FDD.pdf
skynyrd
0
67
Other Decks in Programming
See All in Programming
Azure AI Foundryではじめてのマルチエージェントワークフロー
seosoft
0
190
Google Agent Development Kit でLINE Botを作ってみた
ymd65536
2
260
テストから始めるAgentic Coding 〜Claude Codeと共に行うTDD〜 / Agentic Coding starts with testing
rkaga
13
4.8k
0626 Findy Product Manager LT Night_高田スライド_speaker deck用
mana_takada
0
180
たった 1 枚の PHP ファイルで実装する MCP サーバ / MCP Server with Vanilla PHP
okashoi
1
270
新メンバーも今日から大活躍!SREが支えるスケールし続ける組織のオンボーディング
honmarkhunt
5
7.7k
AIプログラマーDevinは PHPerの夢を見るか?
shinyasaita
1
230
Startups on Rails in Past, Present and Future–Irina Nazarova, RailsConf 2025
irinanazarova
0
140
今ならAmazon ECSのサービス間通信をどう選ぶか / Selection of ECS Interservice Communication 2025
tkikuc
21
4k
Python型ヒント完全ガイド 初心者でも分かる、現代的で実践的な使い方
mickey_kubo
1
140
Deep Dive into ~/.claude/projects
hiragram
14
2.6k
AIともっと楽するE2Eテスト
myohei
7
2.8k
Featured
See All Featured
A designer walks into a library…
pauljervisheath
207
24k
Visualization
eitanlees
146
16k
10 Git Anti Patterns You Should be Aware of
lemiorhan
PRO
656
60k
Build The Right Thing And Hit Your Dates
maggiecrowley
36
2.8k
The Art of Programming - Codeland 2020
erikaheidi
54
13k
How to Ace a Technical Interview
jacobian
278
23k
A better future with KSS
kneath
238
17k
jQuery: Nuts, Bolts and Bling
dougneiner
63
7.8k
We Have a Design System, Now What?
morganepeng
53
7.7k
Understanding Cognitive Biases in Performance Measurement
bluesmoon
29
1.8k
Gamification - CAS2011
davidbonilla
81
5.4k
Fantastic passwords and where to find them - at NoRuKo
philnash
51
3.3k
Transcript
None
None
None
None
None
None
None
None
None
None
None
0 20 40 60 80 100 120 http://www.isixsigma.com/industries/software-it/defect-prevention-reducing-costs-and-enhancing-quality/
None
None
None
None
None
[TestFixtureSetUp] public void TestFixtureSetUp() { result = SomeHelperClass.GetResult(); } [Test]
public void the_result_should_be_true() { result.Should.BeTrue(); }
public void Foo() { var mockObject = new Mock<SampleClass>(); mockObject
.Setup(object => object.Bar()) .Returns(whatIWantForTest); }
None
None