OSDN Git Service

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