GitBook: [master] 4 pages modified

This commit is contained in:
Grzegorz Leoniec 2018-11-16 11:49:00 +00:00 committed by gitbook-bot
parent ea246e7932
commit 1f452f2e87
No known key found for this signature in database
GPG Key ID: 07D2180C7B12D0FF
4 changed files with 26 additions and 2 deletions

View File

@ -22,8 +22,10 @@
## Workflow
* [Testing](integration-tests/testing/README.md)
* [Testing Guide](integration-tests/testing/README.md)
* [Integration Testing](integration-tests/testing/integration-testing.md)
* [Component Testing](integration-tests/testing/component-testing.md)
* [Unit Testing](integration-tests/testing/unit-testing.md)
* [Pull-Requests](integration-tests/pull-requests.md)
* [Deployment](integration-tests/deployment.md)

View File

@ -1,2 +1,20 @@
# Testing
---
description: Explaniation of the main three testing approaches.
---
# Testing Guide
## Integration Testing
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
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
Expecially the Backend relies on Unit Tests as there are no Vue Components.

View File

@ -0,0 +1,2 @@
# Component Testing

View File

@ -0,0 +1,2 @@
# Unit Testing