1### Why is gabeldorsche plural? 2 3Please see this [informative video we've prepared](https://www.youtube.com/watch?v=vLRyJ0dawjM). 4 5### Architecture 6 7Guidelines for developing the Gabeldorsche (GD) stack 8 9* [Architecture](./docs/architecture/architecture.md) 10* [Style Guide](./docs/architecture/style_guide.md) 11 12### Testing 13 14Gabeldorsche (GD) was built with test driven development in mind. Three types of 15tests are used in ensuring Gabeldorsche stack's stability, correctness and free 16from regression. 17 18If you are verifying something is glued or hooked up correctly inside the stack, 19use a unit test. 20 21* [GTest Unit Test](./docs/testing/gtest.md) 22 23If you are verifying correct behavior (especially interop problems) **DO NOT** 24write a unit test as this not a good use of your time. Write a [cert test](./cert_test.md) instead 25so it applies to any stack. 26 27* [GD Certification Tests](./docs/testing/cert_test.md) 28