Unit Testing
Foyzul Karim
foyzulkarim@gmail.com
Secure Link Services Limited
Unit testing? No need
1. Lets write a Math Calculator class.
It can
Add
Subtract
We know it will work because we have 'enough' confidence on it.
Unit testing? No need
2. Lets write a Regular Expression generator class.
It can
Generate Only Alpha Allowed expression with different length
Generate Only Alpha & Numeric Allowed expression with different length
Do you know your code will work before you test by yourself?
If you want to know whether your code is working or not, how would you test?
Create an User Interface Project? then
Put some input fields? then
Put an event trigger control (like button etc)? then
Call your regex method from this project UI?
You would do that.. won't you?
Any other idea?
How about...
If I say you to put your code under a testing machine. You don't need to test by
yourself using the UI, would you mind?
Lets see one of the most common testing tool of the world.
Anyone wouldn't dare to test that by his/her finger to calculate the result.
Or would anyone?
Unit testing (workshop)
Unit testing (workshop)
Why would you need that?
Because you don't need to manually input the values each of the time you want
to test
Because you don't need to input different values each of the time you want to
test
Because you don't need to click and press keyboards each of the time you
want to test
Because after you modify some of your classes you don't want to test manually
the rest other classes
And many more because left...
Who says to write unit test?
"Any program feature without an automated test simply doesn't exist"
Industrial Logic
I Don't know those guys
I have enough skill to write codes which act what I expect that to do..
I don't want to write Test Code because I am a
"Super Geek Alien Type Genius Programmer, Not a Tester"
Probably you know these
JQuery
Json.NET
Entity Framework
JQuery Validation
Microsoft.Web.Infrastructure
JQuery UI
Modernizer
Microsoft ASP.NET Razor 2
ELMAH
Ninject
Unit testing (workshop)
Unit testing (workshop)
Unit testing (workshop)
So...
You will be unusual if you don’t write test code for your production code.
Lets test
Required:
Visual Studio 2012
Resharper 7.0
NUnit library
Moq library
Sql Server (any)
Lets test our Add method
public class MathCalculator
{
public int Add(int first, int second)
{
return first + second;
}
}
[TestFixture]
public class MathCalculatorFixture
{
[Test]
public void TestAddReturnsSum()
{
MathCalculator calculator=new MathCalculator();
int result = calculator.Add(10, 20);
Assert.AreEqual(30, result);
}
Debug vs Run
Displaying Error message
Criteria of GOOD Unit
Tests
Each of your test should focus on a single behaviour of a single method.
So it should be
Small
Precise
Independent
Fast
Flexible
Manual testing is superb !!!
What would you do if you don't have any unit testing framework to test the
Add() method we wrote just now?
Automated VS Manual Testing
[Industrial Logic]
Manual Tests is more expensive and time consuming
Manual Testing becomes mundane and boring
Automated Tests are reusable
Manual Tests provide limited Visibility and have to be repeated by all
Stakeholders
Automated Tests can have varying scopes and may require less complex setup
and teardown
Automated Testing ensures repeatability (missing out)
Automated Testing drives cleaner design
Automated Tests provide a Safety Net for Refactoring
Automated Tests are living up-to-date specification document
Automated Tests dose not clutter your code/console/logs
What the Guru's are
saying:
“Any program feature without an automated test simply doesn’t exist.”
from Extreme Programming Explained, Kent Beck
Practice time
We want to check that whether the username of the student object has
minimum 6 characters in length.
Lets test it.
Hints:
public class StudentManager
{
public bool IsAllowedToProceed(string userName)
{
…
...
}
}
Steps we should follow
Arrange
Prepare the objects and appropriate data
Act
Call the appropriate method
Assert
Assert the expected values with the actual values
What should we focus?
One test method should focus on a single behaviour of the method to be
tested.
If a single method can behave multiple ways, we should write different test
methods to test each of the expected scenarios.
More Practice...
Discussion and change of the requirements according to the audience level.
For example:
1. Create different criteria for a username to have and test those criteria
Lets discuss a project
Shortest path finder
Another Example scenario
A user can attempt to login 3 times sequentially. On failing the 3rd time, his
account will be locked. On the 4th time, his account can't be accessed
whether he gives valid credentials or not. After an hour he will be again able
to try to login.
Brainstorming time
Find out the possible criteria to test the scenario.
Lets discuss
Possible scenarios to test
So, the possible scenarios might be
1. Ideal case, where user inputs are valid and he will be given pass to proceed
2. Worst case, using invalid password, the user will try login 3 times in a
sequence and in the 4th time he will receive a account lock notification
3. User can not proceed to the next step if he inputs 3 times in a row, but in the
4th time he use the valid password because the system is locked
4. After one hour user can access the system and the counter is 1
5. After one hour blocking time user can login into the system with valid
password on the 4th time
Test Method is explaining
1. TestSigninIdealCase
2. TestSigninBlockCase
3. TestSigninBlockCaseResetWithValidPassword
4. TestSigninBlockCaseResetWithDelayedTime
5. TestSigninBlockCaseResetWithDelayedTimeWithValidPassword
and if required we would add more..
Now Lets discuss about the
Smells
http://www.revealingassets.ca/Home%20Staging%20Addresses%20Bad%20Smells.jpg
Unbearable Test Code
Smell
Don’t copy and paste
Don’t Repeat your code
Know your fixture
Don’t be optimistic
Do Assert
Be clear about the Unit Test Coverage
Know your Testing Framework
Don’t test everything at a time (image in next page)
Avoid inappropriate dependencies of your test method
Try: One Assertion per test
At least One concept per test
Appropriate error message
Unit testing (workshop)
Designing Effective Micro
Tests
Do the Black-box testing with your class. Avoid white-box testing.
assertSame(element, list.get(0));
vs
assertSame(element, list.contents[0]);
A good unit test
Express intent, not implementation details
Small and Simple: Easy to quickly comprehend
Run fast (they have short setups, run times, and break downs)
Run in isolation (reordering possible)
Run in parallel
Use data that makes them easy to read and to understand
Frequently Run with every code change
Test is not unit test if
Has External Dependencies
It talks to the Database
It communicates across the Network
It touches the File System
You have to do special things to your Environment – (such as editing config
files) to run it
It can't run at the same time as any of your other unit tests
Order Dependencies - Only works when run in certain order
Do we need to follow all of
those to write unit test?
http://mattdturner.com/wordpress/wp-content/uploads/2012/07/Computer-frustration.jpg
Sometimes we tweak !!!
At least we can tweak according to our need instead of not writing them at all
So what we are tweaking
while testing Database
[Test]
public void TestGetShouldReturnUser()
{
using (TransactionScope scope=new TransactionScope())
{
IUserRepository repository = new UserRepository(new
GoldfishDbEntities());
User user = CreateUser();
repository.Save(user);
User returnedUser = repository.Get(user.Id);
Assert.AreEqual(user.Id,returnedUser.Id);
Assert.AreEqual(user.Gender,returnedUser.Gender);
}
}
Unit testing Advanced
Lets talk about the other attributes
Setup
Teardown
Inheritance in Unit Testing
Exception Expectations
How to write the test when our production code throws exceptions?
Practice (Sales tax)
Sales Tax Introduction
Basic sales tax is applicable at a rate of 10% on all goods, except books, food,
and medical products that are exempt.
Import duty is an additional sales tax applicable on all imported goods at a rate
of 5%, with no exemptions.
When I purchase items I receive a receipt, whichlists the name of all the items
and their price (including tax), finishing
with the total cost of the items, and the total amounts of sales taxes paid. The
rounding rules for sales tax are that for
a tax rate of n%, a shelf price of p contains (np/100 rounded up to the nearest
0.05) amount of sales tax.
Write an application that prints out the receipt details for these shopping
baskets.
Practice (Sales tax)
INPUT/OUTPUT:
Input 1:
1 book at 12.49
1 music CD at 14.99
1 chocolate bar at 0.85
Output 1:
1 book : 12.49
1 music CD: 16.49
1 chocolate bar: 0.85
Sales Taxes: 1.50
Total: 29.83
Input 2:
1 imported box of chocolates at 10.00
1 imported bottle of perfume at 47.50
Output 2:
1 imported box of chocolates: 10.50
1 imported bottle of perfume: 54.65
Sales Taxes: 7.65
Practice (Sales tax)
Input 3:
1 imported bottle of perfume at 27.99
1 bottle of perfume at 18.99
1 packet of headache pills at 9.75
1 box of imported chocolates at 11.25
Output 3:
1 imported bottle of perfume: 32.19
1 bottle of perfume: 20.89
1 packet of headache pills: 9.75
1 imported box of chocolates: 11.85
Sales Taxes: 6.70
Total: 74.68
Unit testing (workshop)

More Related Content

PDF
Unit Test + Functional Programming = Love
PPTX
An Introduction to Unit Testing
PPTX
Benefit From Unit Testing In The Real World
PDF
Is this how you hate unit testing?
PPTX
Unit Testing And Mocking
PDF
How and what to unit test
PPTX
Understanding Unit Testing
PPTX
Roy Osherove on Unit Testing Good Practices and Horrible Mistakes
Unit Test + Functional Programming = Love
An Introduction to Unit Testing
Benefit From Unit Testing In The Real World
Is this how you hate unit testing?
Unit Testing And Mocking
How and what to unit test
Understanding Unit Testing
Roy Osherove on Unit Testing Good Practices and Horrible Mistakes

What's hot (19)

PPTX
Unit Testing Concepts and Best Practices
PDF
Clean Unit Test Patterns
PPS
Unit Testing
KEY
Unit Testing Your Application
PPTX
Unit test
PPTX
Unit Testing
PPTX
Unit tests & TDD
PPT
Unit testing
PPTX
Mock driven development using .NET
PDF
Unit Testing Fundamentals
PPTX
Unit Tests And Automated Testing
PPTX
Unit testing - the hard parts
PPTX
Test driven development in .Net - 2010 + Eclipse
PDF
Unit Testing 101
PPT
Getting Unstuck: Working with Legacy Code and Data
PDF
Workshop unit test
PPT
Unit Testing
PPTX
Unit Testing (C#)
PPS
Why Unit Testingl
Unit Testing Concepts and Best Practices
Clean Unit Test Patterns
Unit Testing
Unit Testing Your Application
Unit test
Unit Testing
Unit tests & TDD
Unit testing
Mock driven development using .NET
Unit Testing Fundamentals
Unit Tests And Automated Testing
Unit testing - the hard parts
Test driven development in .Net - 2010 + Eclipse
Unit Testing 101
Getting Unstuck: Working with Legacy Code and Data
Workshop unit test
Unit Testing
Unit Testing (C#)
Why Unit Testingl
Ad

Viewers also liked (7)

PPTX
Windows store app development using javascript
PPT
Nunit
PDF
An Introduction to Unit Test Using NUnit
PPTX
Unit testing with NUnit
PPTX
Introduction to testing with MSTest, Visual Studio, and Team Foundation Serve...
PPTX
Windows store app development using javascript
Nunit
An Introduction to Unit Test Using NUnit
Unit testing with NUnit
Introduction to testing with MSTest, Visual Studio, and Team Foundation Serve...
Ad

Similar to Unit testing (workshop) (20)

PPTX
Unit testing
PDF
An introduction to unit testing
PPTX
TDD Best Practices
PPTX
Building unit tests correctly with visual studio 2013
PDF
Getting Started With Testing
PPTX
Building unit tests correctly
PDF
SELJE_Database_Unit_Testing.pdf
PPTX
DotNet unit testing training
PDF
What is Unit Testing? - A Complete Guide
PDF
10 Principles of Apex Testing
PDF
TDD step patterns
PDF
Test and Behaviour Driven Development (TDD/BDD)
PPTX
Tdd & unit test
PDF
What is Unit Testing_ - A Complete Guide.pdf
PPTX
Test Design For Everyone
PPTX
Making the Unstable Stable - An Intro To Testing
PDF
Some testing - Everything you should know about testing to go with @pedro_g_s...
PDF
Bad test, good test
PDF
Agile Work Quality: Test Driven Development and Unit Tests
PPTX
The Test way
Unit testing
An introduction to unit testing
TDD Best Practices
Building unit tests correctly with visual studio 2013
Getting Started With Testing
Building unit tests correctly
SELJE_Database_Unit_Testing.pdf
DotNet unit testing training
What is Unit Testing? - A Complete Guide
10 Principles of Apex Testing
TDD step patterns
Test and Behaviour Driven Development (TDD/BDD)
Tdd & unit test
What is Unit Testing_ - A Complete Guide.pdf
Test Design For Everyone
Making the Unstable Stable - An Intro To Testing
Some testing - Everything you should know about testing to go with @pedro_g_s...
Bad test, good test
Agile Work Quality: Test Driven Development and Unit Tests
The Test way

More from Foyzul Karim (15)

PPTX
Career talk 2024 : Balancing AI & Fundamentals in Modern Software Engineering
PPTX
Software architecture : From project management to deployment
PPTX
SDLC, Agile methodologies and Career in Product management
PPTX
Software architecture
PPTX
A practical approach on - How to design offline-online synchronization system
PPTX
BizBook365 : A microservice approach
PPTX
Microservices: A developer's approach
PPTX
Software design principles SOLID
PPTX
BizBook365.com 16Feb2018 Demo
PPTX
Angular4 kickstart
PPTX
BizBook365 - Modern Inventory System for Shops
PPTX
Kickstart android development with xamarin
PPTX
Windows store app development V1
PDF
Data types
PPT
Career talk 2024 : Balancing AI & Fundamentals in Modern Software Engineering
Software architecture : From project management to deployment
SDLC, Agile methodologies and Career in Product management
Software architecture
A practical approach on - How to design offline-online synchronization system
BizBook365 : A microservice approach
Microservices: A developer's approach
Software design principles SOLID
BizBook365.com 16Feb2018 Demo
Angular4 kickstart
BizBook365 - Modern Inventory System for Shops
Kickstart android development with xamarin
Windows store app development V1
Data types

Recently uploaded (20)

PDF
The Digital Engine Room: Unlocking APAC’s Economic and Digital Potential thro...
PDF
“Introduction to Designing with AI Agents,” a Presentation from Amazon Web Se...
PDF
Technical Debt in the AI Coding Era - By Antonio Bianco
PDF
Examining Bias in AI Generated News Content.pdf
PDF
Chapter 1: computer maintenance and troubleshooting
PPTX
How to use fields_get method in Odoo 18
PPTX
Information-Technology-in-Human-Society.pptx
PDF
Intravenous drug administration application for pediatric patients via augmen...
PPTX
Blending method and technology for hydrogen.pptx
PDF
Human Computer Interaction Miterm Lesson
PDF
Secure Java Applications against Quantum Threats
PDF
Addressing the challenges of harmonizing law and artificial intelligence tech...
PPTX
Slides World Game (s) Great Redesign Eco Economic Epochs.pptx
PDF
CEH Module 2 Footprinting CEH V13, concepts
PDF
substrate PowerPoint Presentation basic one
PDF
Streamline Vulnerability Management From Minimal Images to SBOMs
PDF
Internet of Things (IoT) – Definition, Types, and Uses
PDF
The AI Revolution in Customer Service - 2025
PDF
ment.tech-Siri Delay Opens AI Startup Opportunity in 2025.pdf
PDF
Introduction to c language from lecture slides
The Digital Engine Room: Unlocking APAC’s Economic and Digital Potential thro...
“Introduction to Designing with AI Agents,” a Presentation from Amazon Web Se...
Technical Debt in the AI Coding Era - By Antonio Bianco
Examining Bias in AI Generated News Content.pdf
Chapter 1: computer maintenance and troubleshooting
How to use fields_get method in Odoo 18
Information-Technology-in-Human-Society.pptx
Intravenous drug administration application for pediatric patients via augmen...
Blending method and technology for hydrogen.pptx
Human Computer Interaction Miterm Lesson
Secure Java Applications against Quantum Threats
Addressing the challenges of harmonizing law and artificial intelligence tech...
Slides World Game (s) Great Redesign Eco Economic Epochs.pptx
CEH Module 2 Footprinting CEH V13, concepts
substrate PowerPoint Presentation basic one
Streamline Vulnerability Management From Minimal Images to SBOMs
Internet of Things (IoT) – Definition, Types, and Uses
The AI Revolution in Customer Service - 2025
ment.tech-Siri Delay Opens AI Startup Opportunity in 2025.pdf
Introduction to c language from lecture slides

Unit testing (workshop)

  • 2. Unit testing? No need 1. Lets write a Math Calculator class. It can Add Subtract We know it will work because we have 'enough' confidence on it.
  • 3. Unit testing? No need 2. Lets write a Regular Expression generator class. It can Generate Only Alpha Allowed expression with different length Generate Only Alpha & Numeric Allowed expression with different length Do you know your code will work before you test by yourself? If you want to know whether your code is working or not, how would you test? Create an User Interface Project? then Put some input fields? then Put an event trigger control (like button etc)? then Call your regex method from this project UI? You would do that.. won't you? Any other idea?
  • 4. How about... If I say you to put your code under a testing machine. You don't need to test by yourself using the UI, would you mind? Lets see one of the most common testing tool of the world. Anyone wouldn't dare to test that by his/her finger to calculate the result. Or would anyone?
  • 7. Why would you need that? Because you don't need to manually input the values each of the time you want to test Because you don't need to input different values each of the time you want to test Because you don't need to click and press keyboards each of the time you want to test Because after you modify some of your classes you don't want to test manually the rest other classes And many more because left...
  • 8. Who says to write unit test? "Any program feature without an automated test simply doesn't exist" Industrial Logic
  • 9. I Don't know those guys I have enough skill to write codes which act what I expect that to do.. I don't want to write Test Code because I am a "Super Geek Alien Type Genius Programmer, Not a Tester"
  • 10. Probably you know these JQuery Json.NET Entity Framework JQuery Validation Microsoft.Web.Infrastructure JQuery UI Modernizer Microsoft ASP.NET Razor 2 ELMAH Ninject
  • 14. So... You will be unusual if you don’t write test code for your production code.
  • 15. Lets test Required: Visual Studio 2012 Resharper 7.0 NUnit library Moq library Sql Server (any)
  • 16. Lets test our Add method public class MathCalculator { public int Add(int first, int second) { return first + second; } } [TestFixture] public class MathCalculatorFixture { [Test] public void TestAddReturnsSum() { MathCalculator calculator=new MathCalculator(); int result = calculator.Add(10, 20); Assert.AreEqual(30, result); }
  • 19. Criteria of GOOD Unit Tests Each of your test should focus on a single behaviour of a single method. So it should be Small Precise Independent Fast Flexible
  • 20. Manual testing is superb !!! What would you do if you don't have any unit testing framework to test the Add() method we wrote just now?
  • 21. Automated VS Manual Testing [Industrial Logic] Manual Tests is more expensive and time consuming Manual Testing becomes mundane and boring Automated Tests are reusable Manual Tests provide limited Visibility and have to be repeated by all Stakeholders Automated Tests can have varying scopes and may require less complex setup and teardown Automated Testing ensures repeatability (missing out) Automated Testing drives cleaner design Automated Tests provide a Safety Net for Refactoring Automated Tests are living up-to-date specification document Automated Tests dose not clutter your code/console/logs
  • 22. What the Guru's are saying: “Any program feature without an automated test simply doesn’t exist.” from Extreme Programming Explained, Kent Beck
  • 23. Practice time We want to check that whether the username of the student object has minimum 6 characters in length. Lets test it. Hints: public class StudentManager { public bool IsAllowedToProceed(string userName) { … ... } }
  • 24. Steps we should follow Arrange Prepare the objects and appropriate data Act Call the appropriate method Assert Assert the expected values with the actual values
  • 25. What should we focus? One test method should focus on a single behaviour of the method to be tested. If a single method can behave multiple ways, we should write different test methods to test each of the expected scenarios.
  • 26. More Practice... Discussion and change of the requirements according to the audience level. For example: 1. Create different criteria for a username to have and test those criteria
  • 27. Lets discuss a project Shortest path finder
  • 28. Another Example scenario A user can attempt to login 3 times sequentially. On failing the 3rd time, his account will be locked. On the 4th time, his account can't be accessed whether he gives valid credentials or not. After an hour he will be again able to try to login.
  • 29. Brainstorming time Find out the possible criteria to test the scenario. Lets discuss
  • 30. Possible scenarios to test So, the possible scenarios might be 1. Ideal case, where user inputs are valid and he will be given pass to proceed 2. Worst case, using invalid password, the user will try login 3 times in a sequence and in the 4th time he will receive a account lock notification 3. User can not proceed to the next step if he inputs 3 times in a row, but in the 4th time he use the valid password because the system is locked 4. After one hour user can access the system and the counter is 1 5. After one hour blocking time user can login into the system with valid password on the 4th time
  • 31. Test Method is explaining 1. TestSigninIdealCase 2. TestSigninBlockCase 3. TestSigninBlockCaseResetWithValidPassword 4. TestSigninBlockCaseResetWithDelayedTime 5. TestSigninBlockCaseResetWithDelayedTimeWithValidPassword and if required we would add more..
  • 32. Now Lets discuss about the Smells http://www.revealingassets.ca/Home%20Staging%20Addresses%20Bad%20Smells.jpg
  • 33. Unbearable Test Code Smell Don’t copy and paste Don’t Repeat your code Know your fixture Don’t be optimistic Do Assert Be clear about the Unit Test Coverage Know your Testing Framework Don’t test everything at a time (image in next page) Avoid inappropriate dependencies of your test method Try: One Assertion per test At least One concept per test Appropriate error message
  • 35. Designing Effective Micro Tests Do the Black-box testing with your class. Avoid white-box testing. assertSame(element, list.get(0)); vs assertSame(element, list.contents[0]);
  • 36. A good unit test Express intent, not implementation details Small and Simple: Easy to quickly comprehend Run fast (they have short setups, run times, and break downs) Run in isolation (reordering possible) Run in parallel Use data that makes them easy to read and to understand Frequently Run with every code change
  • 37. Test is not unit test if Has External Dependencies It talks to the Database It communicates across the Network It touches the File System You have to do special things to your Environment – (such as editing config files) to run it It can't run at the same time as any of your other unit tests Order Dependencies - Only works when run in certain order
  • 38. Do we need to follow all of those to write unit test? http://mattdturner.com/wordpress/wp-content/uploads/2012/07/Computer-frustration.jpg
  • 39. Sometimes we tweak !!! At least we can tweak according to our need instead of not writing them at all
  • 40. So what we are tweaking while testing Database [Test] public void TestGetShouldReturnUser() { using (TransactionScope scope=new TransactionScope()) { IUserRepository repository = new UserRepository(new GoldfishDbEntities()); User user = CreateUser(); repository.Save(user); User returnedUser = repository.Get(user.Id); Assert.AreEqual(user.Id,returnedUser.Id); Assert.AreEqual(user.Gender,returnedUser.Gender); } }
  • 41. Unit testing Advanced Lets talk about the other attributes Setup Teardown
  • 43. Exception Expectations How to write the test when our production code throws exceptions?
  • 44. Practice (Sales tax) Sales Tax Introduction Basic sales tax is applicable at a rate of 10% on all goods, except books, food, and medical products that are exempt. Import duty is an additional sales tax applicable on all imported goods at a rate of 5%, with no exemptions. When I purchase items I receive a receipt, whichlists the name of all the items and their price (including tax), finishing with the total cost of the items, and the total amounts of sales taxes paid. The rounding rules for sales tax are that for a tax rate of n%, a shelf price of p contains (np/100 rounded up to the nearest 0.05) amount of sales tax. Write an application that prints out the receipt details for these shopping baskets.
  • 45. Practice (Sales tax) INPUT/OUTPUT: Input 1: 1 book at 12.49 1 music CD at 14.99 1 chocolate bar at 0.85 Output 1: 1 book : 12.49 1 music CD: 16.49 1 chocolate bar: 0.85 Sales Taxes: 1.50 Total: 29.83 Input 2: 1 imported box of chocolates at 10.00 1 imported bottle of perfume at 47.50 Output 2: 1 imported box of chocolates: 10.50 1 imported bottle of perfume: 54.65 Sales Taxes: 7.65
  • 46. Practice (Sales tax) Input 3: 1 imported bottle of perfume at 27.99 1 bottle of perfume at 18.99 1 packet of headache pills at 9.75 1 box of imported chocolates at 11.25 Output 3: 1 imported bottle of perfume: 32.19 1 bottle of perfume: 20.89 1 packet of headache pills: 9.75 1 imported box of chocolates: 11.85 Sales Taxes: 6.70 Total: 74.68