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
デザイナーが Androidエンジニアに 挑戦してみた
874wokiite
0
550
AI時代のUIはどこへ行く?
yusukebe
18
9.1k
時間軸から考えるTerraformを使う理由と留意点
fufuhu
16
4.8k
Improving my own Ruby thereafter
sisshiki1969
1
160
概念モデル→論理モデルで気をつけていること
sunnyone
3
300
2025 年のコーディングエージェントの現在地とエンジニアの仕事の変化について
azukiazusa1
24
12k
プロパティベーステストによるUIテスト: LLMによるプロパティ定義生成でエッジケースを捉える
tetta_pdnt
0
4.3k
@Environment(\.keyPath)那么好我不允许你们不知道! / atEnvironment keyPath is so good and you should know it!
lovee
0
130
OSS開発者という働き方
andpad
5
1.7k
AIでLINEスタンプを作ってみた
eycjur
1
230
パッケージ設計の黒魔術/Kyoto.go#63
lufia
3
440
Azure SRE Agentで運用は楽になるのか?
kkamegawa
0
2.5k
Featured
See All Featured
Documentation Writing (for coders)
carmenintech
74
5k
How to train your dragon (web standard)
notwaldorf
96
6.2k
Put a Button on it: Removing Barriers to Going Fast.
kastner
60
4k
Code Reviewing Like a Champion
maltzj
525
40k
The Art of Delivering Value - GDevCon NA Keynote
reverentgeek
15
1.7k
BBQ
matthewcrist
89
9.8k
Done Done
chrislema
185
16k
Performance Is Good for Brains [We Love Speed 2024]
tammyeverts
12
1.1k
Build The Right Thing And Hit Your Dates
maggiecrowley
37
2.9k
Bootstrapping a Software Product
garrettdimon
PRO
307
110k
Being A Developer After 40
akosma
90
590k
Gamification - CAS2011
davidbonilla
81
5.4k
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