1
0
mirror of https://github.com/kamranahmedse/developer-roadmap.git synced 2025-08-30 04:30:01 +02:00

Update Load/Performance/Stress Testing Links and Formatting (#2090)

This commit is contained in:
ChuckD3ath
2022-10-04 00:19:14 +02:00
committed by GitHub
parent b9b4302066
commit 8f16ebf26a
3 changed files with 11 additions and 5 deletions

View File

@@ -4,4 +4,4 @@ Load Testing is a type of Performance Testing that determines the performance of
<ResourceGroupTitle>Free Content</ResourceGroupTitle>
<BadgeLink colorScheme='yellow' badgeText='Read' href='https://www.geeksforgeeks.org/software-testing-load-testing/'>Software Testing: Load Testing</BadgeLink>
<BadgeLink colorScheme='yellow' badgeText='Read' href='https://loadninja.com/load-testing/'>Load testing and Best Practises</BadgeLink>
<BadgeLink colorScheme='yellow' badgeText='Read' href='https://loadninja.com/load-testing/'>Load testing and Best Practises</BadgeLink>

View File

@@ -1,8 +1,8 @@
# Performance Testing
Performance Testing is a subset of Performance Engineering. It is a process of evaluating a systems behavior under various extreme conditions. The main intent of performance testing is monitoring and improving key performance indicators such as response time, throughput, memory, CPU utilization and more.
Performance Testing is a subset of Performance Engineering. It is a process of evaluating a systems behavior under various extreme conditions. The main intent of performance testing is monitoring and improving key performance indicators such as response time, throughput, memory, CPU utilization, and more.
There are three objectives (three S) of Performance testing to observe and evaluate: `Speed`, `Scalability` and `Stability`.
There are three objectives (three S) of Performance testing to observe and evaluate: `Speed`, `Scalability`, and `Stability`.
## Types of Performance Testing
@@ -14,4 +14,7 @@ Following are the commonly used performance testing types, but not limited to:
- Endurance Testing
- Volume Testing
- Scalability Testing
- Capacity Testing
- Capacity Testing
<ResourceGroupTitle>Free Content</ResourceGroupTitle>
<BadgeLink colorScheme='yellow' badgeText='Read' href='https://www.guru99.com/performance-testing.html'>Performance Testing Tutorial Types (Example)</BadgeLink>

View File

@@ -2,4 +2,7 @@
`Stress Testing` is a type of `Performance Testing`. The objective of stress testing is to identify the breaking point of application under test under extreme normal load.
e.g. injecting high volume of requests per second to an API might cause the disruption to its service or throws HTTP 503 Service Unavailable or cause other consequences.
e.g. Injecting high volume of requests per second to an API might cause the disruption to its service, or throws HTTP 503 Service Unavailable or cause other consequences.
<ResourceGroupTitle>Free Content</ResourceGroupTitle>
<BadgeLink colorScheme='yellow' badgeText='Read' href='https://www.guru99.com/stress-testing-tutorial.html'>What is Stress Testing in Software Testing?</BadgeLink>