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_pyramid.pdf
Search
Poornima
September 12, 2016
0
28
Test_pyramid.pdf
Poornima
September 12, 2016
Tweet
Share
More Decks by Poornima
See All by Poornima
How to overcome Change Blindness in Testing
poornimasarang
0
120
Deliver Anything Anywhere Anytime
poornimasarang
0
130
Featured
See All Featured
Embracing the Ebb and Flow
colly
87
4.8k
10 Git Anti Patterns You Should be Aware of
lemiorhan
PRO
656
61k
個人開発の失敗を避けるイケてる考え方 / tips for indie hackers
panda_program
113
20k
A Modern Web Designer's Workflow
chriscoyier
696
190k
The Illustrated Children's Guide to Kubernetes
chrisshort
48
50k
Save Time (by Creating Custom Rails Generators)
garrettdimon
PRO
32
1.6k
The Art of Delivering Value - GDevCon NA Keynote
reverentgeek
15
1.7k
Art, The Web, and Tiny UX
lynnandtonic
303
21k
Product Roadmaps are Hard
iamctodd
PRO
54
11k
The Language of Interfaces
destraynor
161
25k
Practical Orchestrator
shlominoach
190
11k
実際に使うSQLの書き方 徹底解説 / pgcon21j-tutorial
soudai
PRO
188
55k
Transcript
Test Pyramid Rajeswari - Dev Poornima - Qa
UI Service Integration Unit Pyramid Manual ,Perfomance, Security, Load
Let’s Start with an Example Student Id: Submit Id 123456
Name Kabali Physics 87 Maths 98 Chemistry 54 Total 239 Average 79.6 Status Pass 123456 Student Details
Unit Tests A unit test exercises the smallest piece of
testable software in the application to determine whether it behaves as expected.
Integration Tests An integration test verifies the communication paths and
interactions between components to detect interface defects.
Service Test { "id": "123456", "name": "Kabali", "physics": 87, "maths":
98, "chemistry": 54, "total": 239, "average": 79.6, "status": "PASS" }
UI - End to End • Test the UI layer
• Test like the User • Tools available -Selenium, QTP • Frameworks
• Manual • Performance • Load • Security Other types…..
Thank you!