Upgrade to Pro — share decks privately, control downloads, hide ads and more …

Test_pyramid.pdf

Poornima
September 12, 2016
26

 Test_pyramid.pdf

Poornima

September 12, 2016
Tweet

Transcript

  1. 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
  2. Unit Tests A unit test exercises the smallest piece of

    testable software in the application to determine whether it behaves as expected.
  3. Integration Tests An integration test verifies the communication paths and

    interactions between components to detect interface defects.
  4. Service Test { "id": "123456", "name": "Kabali", "physics": 87, "maths":

    98, "chemistry": 54, "total": 239, "average": 79.6, "status": "PASS" }
  5. UI - End to End • Test the UI layer

    • Test like the User • Tools available -Selenium, QTP • Frameworks