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
69
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
68
Other Decks in Programming
See All in Programming
Go言語はstack overflowの夢を見るか?
logica0419
1
680
ネストしたdata classの面倒な更新にさようなら!Lensを作って理解するArrowのOpticsの世界
shiita0903
1
230
Researchlyの開発で参考にしたデザイン
adsholoko
0
110
Making Angular Apps Smarter with Generative AI: Local and Offline-capable
christianliebel
PRO
0
100
AsyncSequenceとAsyncStreamのプロポーザルを全部読む!!
s_shimotori
1
220
What Spring Developers Should Know About Jakarta EE
ivargrimstad
0
680
contribution to astral-sh/uv
shunsock
0
580
外接に惑わされない自システムの処理時間SLIをOpenTelemetryで実現した話
kotaro7750
0
150
CSC509 Lecture 11
javiergs
PRO
0
280
When Dependencies Fail: Building Antifragile Applications in a Fragile World
selcukusta
0
120
ビルドプロセスをデバッグしよう!
yt8492
0
210
kiroとCodexで最高のSpec駆動開発を!!数時間で web3ネイティブなミニゲームを作ってみたよ!
mashharuki
0
1k
Featured
See All Featured
Let's Do A Bunch of Simple Stuff to Make Websites Faster
chriscoyier
508
140k
A better future with KSS
kneath
239
18k
Building Better People: How to give real-time feedback that sticks.
wjessup
370
20k
Helping Users Find Their Own Way: Creating Modern Search Experiences
danielanewman
31
2.9k
Learning to Love Humans: Emotional Interface Design
aarron
274
41k
The Cost Of JavaScript in 2023
addyosmani
55
9.1k
Code Reviewing Like a Champion
maltzj
526
40k
Navigating Team Friction
lara
190
15k
Raft: Consensus for Rubyists
vanstee
140
7.2k
Designing Dashboards & Data Visualisations in Web Apps
destraynor
231
54k
The Art of Delivering Value - GDevCon NA Keynote
reverentgeek
16
1.7k
The Cult of Friendly URLs
andyhume
79
6.7k
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