GitBook: [master] one page modified

This commit is contained in:
Grzegorz Leoniec 2018-11-16 11:50:45 +00:00 committed by gitbook-bot
parent 1f452f2e87
commit 4e60c15701
No known key found for this signature in database
GPG Key ID: 07D2180C7B12D0FF

View File

@ -4,17 +4,23 @@ description: Explaniation of the main three testing approaches.
# Testing Guide
## Integration Testing
## [Integration Testing](integration-testing.md)
To test the all peaces together from the user perspective, we use integration tests. They also show if the the backend and the frontend are working as expected in conjunction and also if the browser likes our app.
To test the all peaces together from the user perspective, we use integration tests. They also show if the the backend and the frontend are working as expected in conjunction and also if the browser likes our app.
## Component Testing
[more...](integration-testing.md)
## [Component Testing](component-testing.md)
Individual Vue Components should also be documented and testet properly. This guaranties they they are reusable and the api gets more solid in that process.
## Unit Testing
[more...](component-testing.md)
## [Unit Testing](unit-testing.md)
Expecially the Backend relies on Unit Tests as there are no Vue Components.
[more...](unit-testing.md)