Android Vendor Test Suite (VTS) 1

安卓供应商测试套件 (VTS)

VTS 由一套测试框架和测试用例组成,目的是提高安卓系统 ( 如,核心硬件抽象层HALs和库libraries ) 和底层系统软件(如,内核kernel,模块moduls,固件firmware等)的健壮性,可依赖性和依从性。

VTS 主要有两种测试套件:

  • 自动化的(如,record-and-replay and fuzzing);
  • 结构化测试(如,gTest and host-driven python);

VTS框架和测试用例是为userdebug或者eng模式的设备而设计的,其中有些测试用例可以在user build模式下执行,需要用它的应用软件,也就是VTS Agent APP.

内容表:

VTS 用户手册 [VTS User Manual](https://android.googlesource.com/platform/test/vts/+/master/doc/user_manual.md)
VTS 测试用例去哪里找 [Where to find the VTS tes cases](https://android.googlesource.com/platform/test/vts/+/master/testcases/README.md)
VTS 测试开发手册 [VTS Test Developer Manual](https://android.googlesource.com/platform/test/vts/+/master/doc/test_developer_manual.md)
VTS 框架开发手册 [VTS Framework Developer Manual](https://android.googlesource.com/platform/test/vts/+/master/doc/framework_developer_manual.md)

你可能感兴趣的:(Android,Sensor)