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
Java REST API Framework Comparison - PWX 2021
mraible
34
9.2k
Stewardship and Sustainability of Urban and Community Forests
pwiseman
0
140
The Director’s Chair: Orchestrating AI for Truly Effective Learning
tmiket
1
130
So, you think you're a good person
axbom
PRO
2
2k
Templates, Plugins, & Blocks: Oh My! Creating the theme that thinks of everything
marktimemedia
31
2.7k
Abbi's Birthday
coloredviolet
2
5.3k
Max Prin - Stacking Signals: How International SEO Comes Together (And Falls Apart)
techseoconnect
PRO
0
110
Navigating the moral maze — ethical principles for Al-driven product design
skipperchong
2
280
Chrome DevTools: State of the Union 2024 - Debugging React & Beyond
addyosmani
10
1.1k
The World Runs on Bad Software
bkeepers
PRO
72
12k
Fireside Chat
paigeccino
42
3.8k
A Soul's Torment
seathinner
5
2.4k
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!