Skip to content

Commit

Permalink
added 12_testing.adoc to index.adoc
Browse files Browse the repository at this point in the history
  • Loading branch information
UO287687 committed Apr 28, 2024
1 parent da19962 commit 10c2237
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 8 deletions.
7 changes: 4 additions & 3 deletions docs/index.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,8 @@ include::src/10_quality_requirements.adoc[]
include::src/11_technical_risks.adoc[]

<<<<
// 12. Glossary
include::src/12_glossary.adoc[]

include::src/12_testing.adoc[]

<<<<
// 12. Glossary
include::src/13_glossary.adoc[]
13 changes: 8 additions & 5 deletions docs/src/12_testing.adoc
Original file line number Diff line number Diff line change
@@ -1,9 +1,12 @@
= Testing
ifndef::imagesdir[:imagesdir: ../images]

== Unit Tests
Unit tests are used to test individual units of code, such as functions or methods. They are typically written by developers to ensure that each unit of code behaves as expected. In the context of microservices, unit tests can be used to verify the functionality of each microservice. To reduce the possibility of errors that are not due to the microservice being tested, any dependencies that the microservice calls can be mocked.
[[section-testing]]
== Testing

== Acceptance Tests
=== Unit Tests
Unit tests are used to test individual units of code, such as functions or methods. In the context of microservices, unit tests can be used to verify the functionality of each microservice. To reduce the possibility of errors that are not due to the microservice being tested, any dependencies that the microservice calls can be mocked.

=== Acceptance Tests

Acceptance tests allow us to evaluate the functionality of the graphical part of the application by simulating the behaviour that a user would have.

Expand Down Expand Up @@ -33,7 +36,7 @@ Acceptance tests allow us to evaluate the functionality of the graphical part of
|Test the play in infinite mode functionality.
|===

== Load and stress tests
=== Load and stress tests

Load and stress tests allow us to evaluate the behavior of the system under different numbers of users and specific conditions. Load tests test the system's performance with varying user loads, while stress tests push the system to its limits under extreme conditions.

Expand Down
File renamed without changes.

0 comments on commit 10c2237

Please sign in to comment.