SlideShare a Scribd company logo
Building Unit Tests correctly with VS 2013
About.ME
• Senior Consultant @CodeValue
• Developing software (Professionally) since 2002
• Mocking code since 2008
• Test driven professional
• Blogger: http://blog.drorhelper.com
/*
* You may think you know what the following code does.
* But you dont. Trust me.
* Fiddle with it, and youll spend many a sleepless
* night cursing the moment you thought youd be clever
* enough to "optimize" the code below.
* Now close this file and go play with something else.
*/
//
// Dear maintainer:
//
// Once you are done trying to 'optimize' this routine,
// and have realized what a terrible mistake that was,
// please increment the following counter as a warning
// to the next guy:
//
// total_hours_wasted_here = 42
//
//This code sucks, you know it and I know it.
//Move on and call me an idiot later.
http://stackoverflow.com/questions/184618/what-is-the-
best-comment-in-source-code-you-have-ever-encountered
We fear our code!
//Abandon all hope ye who enter beyond this point
//When I wrote this, only God and I understood what I was doing
//Now, God only knows
// I dedicate all this code, all my work, to my wife, Darlene, who will
// have to support me and our three children and the dog once it gets
// released into the public.
//The following 1056 lines of code in this next method
//is a line by line port from VB.NET to C#.
//I ported this code but did not write the original code.
//It remains to me a mystery as to what
//the business logic is trying to accomplish here other than to serve as
//some sort of a compensation shell game invented by a den of thieves.
//Oh well, everyone wants this stuff to work the same as before.
//I guess the devil you know is better than the devil you don't.
“If we’re afraid to change
the very thing we’ve
created,
we failed as professionals”
Robert C. Martin
Legacy code
“Code without tests is bad code...
With tests, we can change the
behavior of our code quickly and
verifiably...”
Michael Feathers - “Working effectively with legacy code”
This is a unit test
[Test]
public void CheckPassword_ValidUser_ReturnTrue()
{
bool result = CheckPassword(“user”, “pass”);
Assert.That(result, Is.True);
}
D
This is also a unit test
[TestMethod]
public void CheckPassword_ValidUser_ReturnTrue()
{
bool result = CheckPassword(“user”, “pass”);
Assert.IsTrue(result);
}
D
A unit test is…
1. Tests specific functionality
2. Clear pass/fail criteria
3. Good unit test runs in isolation
Unit testing is an iterative effort
Unit testing is an iterative effort
There’s more to unit tests then just “tests”
Written by the developer who wrote the code
Quick feedback
Avoid stupid bugs
Immune to regression
Change your code without fear
In code documentation
13
copyright 2008 trainologic LTD
13
One last reason
You’re already Testing your code – manually
So why not save the time?
The cost of unit testing
120%
135%
115%
125%
0%
20%
40%
60%
80%
100%
120%
140%
IBM: Drivers MS: Windows MS: MSN MS: VS
Time taken to code a feature
WithoutTDD Using TDD
The value of unit testing
61%
38%
24%
9%
0%
20%
40%
60%
80%
100%
120%
140%
IBM: Drivers MS: Windows MS: MSN MS: VS
Using Test Driven Design
Time To Code Feature Defect density of team
Major quality improvement for minor time investment
The cost of bugs
0
1
2
3
4
5
6
7
8
9
10
0%
20%
40%
60%
80%
100%
Thousand$s
%defectscreated
Where does it hurt?
% of Defects Introduced Cost to Fix a Defect
The pain is here! This is too late…
Supporting environment
• The team
• Development environment
The Team
• The team commitment is important
• Learn from test reviews
• Track results
Tools of the trade
Server Dev Machine
Source
Control
Build Server
Test Runner
Code
CoverageBuild Script
Unit Testing
Framework
Isolation
Framework
Development environment
• Make it easy to write and run tests
– Unit test framework
– Test Runner
– Isolation framework
• Know where you stand
– Code coverage
Unit testing frameworks
• Create test fixtures
• Assert results
• Additional utilities
• Usually provide command-line/GUI runner
http://en.wikipedia.org/wiki/List_of_unit_testing_frameworks
[Test]
public void AddTest()
{
var cut = new Calculator();
var result = cut.Add(2, 3);
Assert.AreEqual(5, result);
}
This is not a real unit test
Real code has dependencies
Unit test
Code under test
Dependency Dependency
The solution - Mocking
Fake object(s)
Unit test
Code under test
Dependency
Isolation
• Replace production logic with custom logic
• We do this in order to
– Focus the test on one class only
– Test Interaction
– Simplify Unit test writing
What Mocking framework can do for you?
• Create Fake objects
• Set behavior on fake objects
• Verify method was called
• And more...
[Test]
public void IsLoginOK_LoggerThrowsException_CallsWebService()
{
var fakeLogger = Isolate.Fake.Instance<ILogger>();
Isolate
.WhenCalled(() => fakeLogger.Write(""))
.WillThrow(new LoggerException());
var fakeWebService = Isolate.Fake.Instance<IWebService>();
var lm = new LoginManagerWithMockAndStub(fakeLogger,fakeWebService);
lm.IsLoginOK("", "");
Isolate.Verify.WasCalledWithAnyArguments(() => fakeWebService.Write(""));
}
Open source
• FakeItEasy
• Moq
• NMock3
• nSubtitute
• Rhino
Mocks
Free
• MS Fakes
Commercial
• Isolator
• JustMock
Moq
45%
Rhino Mocks
23%
None
9%
FakeItEasy
6%
Nsubstitute
6%
Isolator
4%
Moles
2%
MS Fakes
2%
JustMocks
2%
Other
1%
http://osherove.com/blog/2012/5/4/annual-poll-which-isolation-framework-do-
you-use-if-any.html
Code Coverage
So, What is a good code coverage?
Source Control
Build Server
Commit
There you go
What’s new?
Build Agents
We automatically get
•Error reports & logs
•New version installer
•Help files
•More…
Build run at a Glance
How I failed unit testing my code
Unit testing is great!
Everything should be tested
I can test “almost” everything
Tests break all the time
Unit testing is a waste of time 
A good unit test should be:
• Easy to understand
• Trustworthy
• Robust
Trust Your Tests!
Trustworthy means deterministic
Problem
• I cannot re-run the exact same test if a test fails
Solution
• Don’t use Random in tests
– If you care about the values set them
– If you don’t care about the values put defaults
– Do not use Sleep & time related logic – fake it
• Use fake objects to “force” determinism into the test
• When possible avoid threading in tests.
Trustworthy also means not fragile
Ideally
A test would only fail if a bug was introduced
OR
Requirements changed
How to avoid fragile tests
• Don’t test private/internal (most of the time)
• Fake as little as necessary
• Test only one thing (most of the time)
Readable unit tests
Unit test intent should be clear!
1.What is being tested?
2.What is the desired outcome?
3.Why did test fail?
Learn to write “clean tests”
[Test]
public void CalculatorSimpleTest()
{
calc.ValidOperation = Calculator.Operation.Multiply;
calc.ValidType = typeof (int);
result = calc.Multiply(1, 3);
Assert.IsTrue(result == 3);
if (calc.ValidOperation == Calculator.Operation.Invalid)
{
throw new Exception("Operation should be valid");
}
}
Or suffer the consequences!
[Test]
public void CalculatorSimpleTest()
{
var calc = new Calculator();
calc.ValidOperation = Calculator.Operation.Multiply;
calc.ValidType = typeof (int);
var result = calc.Multiply(-1, 3);
Assert.AreEqual(result, -3);
calc.ValidOperation = Calculator.Operation.Multiply;
calc.ValidType = typeof (int);
result = calc.Multiply(1, 3);
Assert.IsTrue(result == 3);
if (calc.ValidOperation == Calculator.Operation.Invalid)
{
throw new Exception("Operation should be valid");
}
calc.ValidOperation = Calculator.Operation.Multiply;
calc.ValidType = typeof (int);
result = calc.Multiply(10, 3);
Assert.AreEqual(result, 30);
}
Writing a good unit test
[Test]
public void
Multiply_PassTwoPositiveNumbers_ReturnCorrectResult()
{
var calculator = CreateMultiplyCalculator();
var result = calculator.Multiply(1, 3);
Assert.AreEqual(result, 3);
}
So what about code reuse
Readability is more important than code reuse
• Create objects using factories
• Put common and operations in helper
methods
• Use inheritance – sparsely
Avoid logic in the test (if, switch etc.)
Problem
• Test is not readable
• Has several possible paths
• High maintain cost
Tests should be deterministic
Solution
• Split test to several tests – one for each
path
– If logic change it’s easier to update some of the
tests (or delete them)
• One Assert per test rule
How to start with unit tests
1. Test what you’re working on – right now!
2. Write tests to reproduce reported bug
3. When refactoring existing code – use unit tests to
make sure it still works.
4. Delete obsolete tests (and code)
5. All tests must run as part of CI build
Building unit tests correctly with visual studio 2013

More Related Content

What's hot (20)

PPTX
Working Effectively with Legacy Code
Orbit One - We create coherence
 
PPTX
Improving the Quality of Existing Software
Steven Smith
 
PPTX
Writing clean code in C# and .NET
Dror Helper
 
PDF
Working With Legacy Code
Andrea Polci
 
PDF
Devday2016 real unittestingwithmockframework-phatvu
Phat VU
 
PDF
Unit Test + Functional Programming = Love
Alvaro Videla
 
PPTX
Principles and patterns for test driven development
Stephen Fuqua
 
PPTX
Breaking Dependencies to Allow Unit Testing
Steven Smith
 
PPTX
TDD and the Legacy Code Black Hole
Noam Kfir
 
PPTX
Roy Osherove on Unit Testing Good Practices and Horrible Mistakes
Roy Osherove
 
PPTX
VT.NET 20160411: An Intro to Test Driven Development (TDD)
Rob Hale
 
PDF
iOS Test-Driven Development
Pablo Villar
 
PDF
Adding Unit Test To Legacy Code
Terry Yin
 
PDF
Unit Testing Done Right
Brian Fenton
 
PDF
Unit testing (workshop)
Foyzul Karim
 
PDF
Practical Test Automation Deep Dive
Alan Richardson
 
ODP
Embrace Unit Testing
alessiopace
 
PPTX
Improving the Quality of Existing Software
Steven Smith
 
PDF
Write readable tests
Marian Wamsiedel
 
PDF
Unit Testing Fundamentals
Richard Paul
 
Working Effectively with Legacy Code
Orbit One - We create coherence
 
Improving the Quality of Existing Software
Steven Smith
 
Writing clean code in C# and .NET
Dror Helper
 
Working With Legacy Code
Andrea Polci
 
Devday2016 real unittestingwithmockframework-phatvu
Phat VU
 
Unit Test + Functional Programming = Love
Alvaro Videla
 
Principles and patterns for test driven development
Stephen Fuqua
 
Breaking Dependencies to Allow Unit Testing
Steven Smith
 
TDD and the Legacy Code Black Hole
Noam Kfir
 
Roy Osherove on Unit Testing Good Practices and Horrible Mistakes
Roy Osherove
 
VT.NET 20160411: An Intro to Test Driven Development (TDD)
Rob Hale
 
iOS Test-Driven Development
Pablo Villar
 
Adding Unit Test To Legacy Code
Terry Yin
 
Unit Testing Done Right
Brian Fenton
 
Unit testing (workshop)
Foyzul Karim
 
Practical Test Automation Deep Dive
Alan Richardson
 
Embrace Unit Testing
alessiopace
 
Improving the Quality of Existing Software
Steven Smith
 
Write readable tests
Marian Wamsiedel
 
Unit Testing Fundamentals
Richard Paul
 

Similar to Building unit tests correctly with visual studio 2013 (20)

PPTX
Building unit tests correctly
Dror Helper
 
PPTX
Unit testing
Panos Pnevmatikatos
 
PPTX
Unit testing
PiXeL16
 
PPTX
Unit testing basics with NUnit and Visual Studio
Amit Choudhary
 
PPTX
1.1 Chapter_22_ Unit Testing-testing (1).pptx
tiyaAbid
 
PDF
An Introduction to Unit Test Using NUnit
weili_at_slideshare
 
PDF
Unit testing basic
Yuri Anischenko
 
PDF
Unit testing, principles
Renato Primavera
 
PPTX
Unit tests = maintenance hell ?
Thibaud Desodt
 
PPTX
Rc2010 tdd
JasonOffutt
 
PPTX
Unit testing
Vinod Wilson
 
PPTX
An Introduction to unit testing
Steven Casey
 
PDF
Unit testing Agile OpenSpace
Andrei Savu
 
PPTX
TDD Best Practices
Attila Bertók
 
PDF
Unit Testing Best Practices
Tomaš Maconko
 
PPTX
Testes? Mas isso não aumenta o tempo de projecto? Não quero...
Comunidade NetPonto
 
PPT
Unit testing
Murugesan Nataraj
 
PPTX
Skillwise Unit Testing
Skillwise Group
 
PDF
Getting Started With Testing
Giovanni Scerra ☃
 
Building unit tests correctly
Dror Helper
 
Unit testing
Panos Pnevmatikatos
 
Unit testing
PiXeL16
 
Unit testing basics with NUnit and Visual Studio
Amit Choudhary
 
1.1 Chapter_22_ Unit Testing-testing (1).pptx
tiyaAbid
 
An Introduction to Unit Test Using NUnit
weili_at_slideshare
 
Unit testing basic
Yuri Anischenko
 
Unit testing, principles
Renato Primavera
 
Unit tests = maintenance hell ?
Thibaud Desodt
 
Rc2010 tdd
JasonOffutt
 
Unit testing
Vinod Wilson
 
An Introduction to unit testing
Steven Casey
 
Unit testing Agile OpenSpace
Andrei Savu
 
TDD Best Practices
Attila Bertók
 
Unit Testing Best Practices
Tomaš Maconko
 
Testes? Mas isso não aumenta o tempo de projecto? Não quero...
Comunidade NetPonto
 
Unit testing
Murugesan Nataraj
 
Skillwise Unit Testing
Skillwise Group
 
Getting Started With Testing
Giovanni Scerra ☃
 
Ad

More from Dror Helper (20)

PPTX
Unit testing patterns for concurrent code
Dror Helper
 
PPTX
The secret unit testing tools no one ever told you about
Dror Helper
 
PPTX
Debugging with visual studio beyond 'F5'
Dror Helper
 
PPTX
From clever code to better code
Dror Helper
 
PPTX
From clever code to better code
Dror Helper
 
PPTX
A software developer guide to working with aws
Dror Helper
 
PPTX
The secret unit testing tools no one has ever told you about
Dror Helper
 
PPTX
The role of the architect in agile
Dror Helper
 
PDF
Harnessing the power of aws using dot net core
Dror Helper
 
PPTX
Developing multi-platform microservices using .NET core
Dror Helper
 
PPTX
Harnessing the power of aws using dot net
Dror Helper
 
PPTX
Secret unit testing tools no one ever told you about
Dror Helper
 
PPTX
C++ Unit testing - the good, the bad & the ugly
Dror Helper
 
PPTX
Working with c++ legacy code
Dror Helper
 
PPTX
Visual Studio tricks every dot net developer should know
Dror Helper
 
PPTX
Secret unit testing tools
Dror Helper
 
PPTX
Electronics 101 for software developers
Dror Helper
 
PPTX
Navigating the xDD Alphabet Soup
Dror Helper
 
PPTX
Who’s afraid of WinDbg
Dror Helper
 
PPTX
Unit testing patterns for concurrent code
Dror Helper
 
Unit testing patterns for concurrent code
Dror Helper
 
The secret unit testing tools no one ever told you about
Dror Helper
 
Debugging with visual studio beyond 'F5'
Dror Helper
 
From clever code to better code
Dror Helper
 
From clever code to better code
Dror Helper
 
A software developer guide to working with aws
Dror Helper
 
The secret unit testing tools no one has ever told you about
Dror Helper
 
The role of the architect in agile
Dror Helper
 
Harnessing the power of aws using dot net core
Dror Helper
 
Developing multi-platform microservices using .NET core
Dror Helper
 
Harnessing the power of aws using dot net
Dror Helper
 
Secret unit testing tools no one ever told you about
Dror Helper
 
C++ Unit testing - the good, the bad & the ugly
Dror Helper
 
Working with c++ legacy code
Dror Helper
 
Visual Studio tricks every dot net developer should know
Dror Helper
 
Secret unit testing tools
Dror Helper
 
Electronics 101 for software developers
Dror Helper
 
Navigating the xDD Alphabet Soup
Dror Helper
 
Who’s afraid of WinDbg
Dror Helper
 
Unit testing patterns for concurrent code
Dror Helper
 
Ad

Recently uploaded (20)

PPTX
Tally_Basic_Operations_Presentation.pptx
AditiBansal54083
 
PPTX
Why Businesses Are Switching to Open Source Alternatives to Crystal Reports.pptx
Varsha Nayak
 
PPTX
Agentic Automation Journey Series Day 2 – Prompt Engineering for UiPath Agents
klpathrudu
 
PDF
Download Canva Pro 2025 PC Crack Full Latest Version
bashirkhan333g
 
PDF
IDM Crack with Internet Download Manager 6.42 Build 43 with Patch Latest 2025
bashirkhan333g
 
PDF
4K Video Downloader Plus Pro Crack for MacOS New Download 2025
bashirkhan333g
 
PDF
Empower Your Tech Vision- Why Businesses Prefer to Hire Remote Developers fro...
logixshapers59
 
PPTX
AEM User Group: India Chapter Kickoff Meeting
jennaf3
 
PDF
How to Hire AI Developers_ Step-by-Step Guide in 2025.pdf
DianApps Technologies
 
PPTX
Transforming Mining & Engineering Operations with Odoo ERP | Streamline Proje...
SatishKumar2651
 
PPTX
Change Common Properties in IBM SPSS Statistics Version 31.pptx
Version 1 Analytics
 
PDF
AI + DevOps = Smart Automation with devseccops.ai.pdf
Devseccops.ai
 
PDF
Linux Certificate of Completion - LabEx Certificate
VICTOR MAESTRE RAMIREZ
 
PDF
Driver Easy Pro 6.1.1 Crack Licensce key 2025 FREE
utfefguu
 
PDF
Open Chain Q2 Steering Committee Meeting - 2025-06-25
Shane Coughlan
 
PDF
Top Agile Project Management Tools for Teams in 2025
Orangescrum
 
PDF
MiniTool Partition Wizard 12.8 Crack License Key LATEST
hashhshs786
 
PPTX
Home Care Tools: Benefits, features and more
Third Rock Techkno
 
PDF
Generic or Specific? Making sensible software design decisions
Bert Jan Schrijver
 
PDF
Automate Cybersecurity Tasks with Python
VICTOR MAESTRE RAMIREZ
 
Tally_Basic_Operations_Presentation.pptx
AditiBansal54083
 
Why Businesses Are Switching to Open Source Alternatives to Crystal Reports.pptx
Varsha Nayak
 
Agentic Automation Journey Series Day 2 – Prompt Engineering for UiPath Agents
klpathrudu
 
Download Canva Pro 2025 PC Crack Full Latest Version
bashirkhan333g
 
IDM Crack with Internet Download Manager 6.42 Build 43 with Patch Latest 2025
bashirkhan333g
 
4K Video Downloader Plus Pro Crack for MacOS New Download 2025
bashirkhan333g
 
Empower Your Tech Vision- Why Businesses Prefer to Hire Remote Developers fro...
logixshapers59
 
AEM User Group: India Chapter Kickoff Meeting
jennaf3
 
How to Hire AI Developers_ Step-by-Step Guide in 2025.pdf
DianApps Technologies
 
Transforming Mining & Engineering Operations with Odoo ERP | Streamline Proje...
SatishKumar2651
 
Change Common Properties in IBM SPSS Statistics Version 31.pptx
Version 1 Analytics
 
AI + DevOps = Smart Automation with devseccops.ai.pdf
Devseccops.ai
 
Linux Certificate of Completion - LabEx Certificate
VICTOR MAESTRE RAMIREZ
 
Driver Easy Pro 6.1.1 Crack Licensce key 2025 FREE
utfefguu
 
Open Chain Q2 Steering Committee Meeting - 2025-06-25
Shane Coughlan
 
Top Agile Project Management Tools for Teams in 2025
Orangescrum
 
MiniTool Partition Wizard 12.8 Crack License Key LATEST
hashhshs786
 
Home Care Tools: Benefits, features and more
Third Rock Techkno
 
Generic or Specific? Making sensible software design decisions
Bert Jan Schrijver
 
Automate Cybersecurity Tasks with Python
VICTOR MAESTRE RAMIREZ
 

Building unit tests correctly with visual studio 2013

  • 1. Building Unit Tests correctly with VS 2013
  • 2. About.ME • Senior Consultant @CodeValue • Developing software (Professionally) since 2002 • Mocking code since 2008 • Test driven professional • Blogger: http://blog.drorhelper.com
  • 3. /* * You may think you know what the following code does. * But you dont. Trust me. * Fiddle with it, and youll spend many a sleepless * night cursing the moment you thought youd be clever * enough to "optimize" the code below. * Now close this file and go play with something else. */ // // Dear maintainer: // // Once you are done trying to 'optimize' this routine, // and have realized what a terrible mistake that was, // please increment the following counter as a warning // to the next guy: // // total_hours_wasted_here = 42 //
  • 4. //This code sucks, you know it and I know it. //Move on and call me an idiot later. http://stackoverflow.com/questions/184618/what-is-the- best-comment-in-source-code-you-have-ever-encountered We fear our code! //Abandon all hope ye who enter beyond this point //When I wrote this, only God and I understood what I was doing //Now, God only knows // I dedicate all this code, all my work, to my wife, Darlene, who will // have to support me and our three children and the dog once it gets // released into the public. //The following 1056 lines of code in this next method //is a line by line port from VB.NET to C#. //I ported this code but did not write the original code. //It remains to me a mystery as to what //the business logic is trying to accomplish here other than to serve as //some sort of a compensation shell game invented by a den of thieves. //Oh well, everyone wants this stuff to work the same as before. //I guess the devil you know is better than the devil you don't.
  • 5. “If we’re afraid to change the very thing we’ve created, we failed as professionals” Robert C. Martin
  • 7. “Code without tests is bad code... With tests, we can change the behavior of our code quickly and verifiably...” Michael Feathers - “Working effectively with legacy code”
  • 8. This is a unit test [Test] public void CheckPassword_ValidUser_ReturnTrue() { bool result = CheckPassword(“user”, “pass”); Assert.That(result, Is.True); } D
  • 9. This is also a unit test [TestMethod] public void CheckPassword_ValidUser_ReturnTrue() { bool result = CheckPassword(“user”, “pass”); Assert.IsTrue(result); } D
  • 10. A unit test is… 1. Tests specific functionality 2. Clear pass/fail criteria 3. Good unit test runs in isolation
  • 11. Unit testing is an iterative effort Unit testing is an iterative effort
  • 12. There’s more to unit tests then just “tests” Written by the developer who wrote the code Quick feedback Avoid stupid bugs Immune to regression Change your code without fear In code documentation
  • 13. 13 copyright 2008 trainologic LTD 13 One last reason You’re already Testing your code – manually So why not save the time?
  • 14. The cost of unit testing 120% 135% 115% 125% 0% 20% 40% 60% 80% 100% 120% 140% IBM: Drivers MS: Windows MS: MSN MS: VS Time taken to code a feature WithoutTDD Using TDD
  • 15. The value of unit testing 61% 38% 24% 9% 0% 20% 40% 60% 80% 100% 120% 140% IBM: Drivers MS: Windows MS: MSN MS: VS Using Test Driven Design Time To Code Feature Defect density of team Major quality improvement for minor time investment
  • 16. The cost of bugs 0 1 2 3 4 5 6 7 8 9 10 0% 20% 40% 60% 80% 100% Thousand$s %defectscreated Where does it hurt? % of Defects Introduced Cost to Fix a Defect The pain is here! This is too late…
  • 17. Supporting environment • The team • Development environment
  • 18. The Team • The team commitment is important • Learn from test reviews • Track results
  • 19. Tools of the trade Server Dev Machine Source Control Build Server Test Runner Code CoverageBuild Script Unit Testing Framework Isolation Framework
  • 20. Development environment • Make it easy to write and run tests – Unit test framework – Test Runner – Isolation framework • Know where you stand – Code coverage
  • 21. Unit testing frameworks • Create test fixtures • Assert results • Additional utilities • Usually provide command-line/GUI runner http://en.wikipedia.org/wiki/List_of_unit_testing_frameworks
  • 22. [Test] public void AddTest() { var cut = new Calculator(); var result = cut.Add(2, 3); Assert.AreEqual(5, result); } This is not a real unit test
  • 23. Real code has dependencies Unit test Code under test Dependency Dependency
  • 24. The solution - Mocking Fake object(s) Unit test Code under test Dependency
  • 25. Isolation • Replace production logic with custom logic • We do this in order to – Focus the test on one class only – Test Interaction – Simplify Unit test writing
  • 26. What Mocking framework can do for you? • Create Fake objects • Set behavior on fake objects • Verify method was called • And more...
  • 27. [Test] public void IsLoginOK_LoggerThrowsException_CallsWebService() { var fakeLogger = Isolate.Fake.Instance<ILogger>(); Isolate .WhenCalled(() => fakeLogger.Write("")) .WillThrow(new LoggerException()); var fakeWebService = Isolate.Fake.Instance<IWebService>(); var lm = new LoginManagerWithMockAndStub(fakeLogger,fakeWebService); lm.IsLoginOK("", ""); Isolate.Verify.WasCalledWithAnyArguments(() => fakeWebService.Write("")); }
  • 28. Open source • FakeItEasy • Moq • NMock3 • nSubtitute • Rhino Mocks Free • MS Fakes Commercial • Isolator • JustMock
  • 30. Code Coverage So, What is a good code coverage?
  • 31. Source Control Build Server Commit There you go What’s new? Build Agents We automatically get •Error reports & logs •New version installer •Help files •More…
  • 32. Build run at a Glance
  • 33. How I failed unit testing my code Unit testing is great! Everything should be tested I can test “almost” everything Tests break all the time Unit testing is a waste of time 
  • 34. A good unit test should be: • Easy to understand • Trustworthy • Robust Trust Your Tests!
  • 35. Trustworthy means deterministic Problem • I cannot re-run the exact same test if a test fails Solution • Don’t use Random in tests – If you care about the values set them – If you don’t care about the values put defaults – Do not use Sleep & time related logic – fake it • Use fake objects to “force” determinism into the test • When possible avoid threading in tests.
  • 36. Trustworthy also means not fragile Ideally A test would only fail if a bug was introduced OR Requirements changed
  • 37. How to avoid fragile tests • Don’t test private/internal (most of the time) • Fake as little as necessary • Test only one thing (most of the time)
  • 38. Readable unit tests Unit test intent should be clear! 1.What is being tested? 2.What is the desired outcome? 3.Why did test fail?
  • 39. Learn to write “clean tests” [Test] public void CalculatorSimpleTest() { calc.ValidOperation = Calculator.Operation.Multiply; calc.ValidType = typeof (int); result = calc.Multiply(1, 3); Assert.IsTrue(result == 3); if (calc.ValidOperation == Calculator.Operation.Invalid) { throw new Exception("Operation should be valid"); } }
  • 40. Or suffer the consequences! [Test] public void CalculatorSimpleTest() { var calc = new Calculator(); calc.ValidOperation = Calculator.Operation.Multiply; calc.ValidType = typeof (int); var result = calc.Multiply(-1, 3); Assert.AreEqual(result, -3); calc.ValidOperation = Calculator.Operation.Multiply; calc.ValidType = typeof (int); result = calc.Multiply(1, 3); Assert.IsTrue(result == 3); if (calc.ValidOperation == Calculator.Operation.Invalid) { throw new Exception("Operation should be valid"); } calc.ValidOperation = Calculator.Operation.Multiply; calc.ValidType = typeof (int); result = calc.Multiply(10, 3); Assert.AreEqual(result, 30); }
  • 41. Writing a good unit test [Test] public void Multiply_PassTwoPositiveNumbers_ReturnCorrectResult() { var calculator = CreateMultiplyCalculator(); var result = calculator.Multiply(1, 3); Assert.AreEqual(result, 3); }
  • 42. So what about code reuse Readability is more important than code reuse • Create objects using factories • Put common and operations in helper methods • Use inheritance – sparsely
  • 43. Avoid logic in the test (if, switch etc.) Problem • Test is not readable • Has several possible paths • High maintain cost
  • 44. Tests should be deterministic Solution • Split test to several tests – one for each path – If logic change it’s easier to update some of the tests (or delete them) • One Assert per test rule
  • 45. How to start with unit tests 1. Test what you’re working on – right now! 2. Write tests to reproduce reported bug 3. When refactoring existing code – use unit tests to make sure it still works. 4. Delete obsolete tests (and code) 5. All tests must run as part of CI build

Editor's Notes

  • #15: Taken from http://research.microsoft.com/en-us/projects/esm/nagappan_tdd.pdf Realizing quality improvement through test driven development: results and experiences of four industrial teams Published online: 27 February 2008
  • #46: Explain about good places to start using unit tests