1 / 6

Types of Testing in Python

Python supports many different types of testing that you can use to debug and test your applications & websites. Here are the types of testing in Python.<br><br>Visit https://fedingo.com/types-of-testing-in-python/

Télécharger la présentation

Types of Testing in Python

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. Types of Testing in Python

  2. Unit Testing In this case, we basically test only a logical unit of our code. It is used to test if the internal flow of methods & data is correct, and that edge cases are handled properly. This is the most granular form of testing in Python.

  3. Feature Testing In this case, we test the actual functionality of features. You can create a collection of unit tests for this purpose, or a single feature test also.

  4. Integration Testing Integration tests are used to test applications end to end. Even if new code is added to your application, the existing integration tests should work properly.

  5. Performance Testing In this case, we are only checking the performance of a piece of code. Before we run performance tests, we should have ideally performed Unit & Feature Testing to ensure that it is working properly. Performance tests are basically calling the same function repeatedly over a given period of time to ensure that it does not crash the application.

  6. Thank You Visit for details https://fedingo.com/types-of-testing-in-python/

More Related