Files
frameworks_base/libs/WindowManager/Shell/tests
Nataniel Borges 6788d2b5d6 Merge changes from topics "3button-runner", "re-enable-flicker" into sc-dev
* changes:
  Disable some trace assertions
  Fix use of NavigationModeRule on flicker
2021-04-14 08:35:07 +00:00
..
2021-04-13 20:55:39 +02:00
2021-02-18 09:35:06 +00:00

WM Shell Test

This contains all tests written for WM (WindowManager) Shell and it's currently divided into 3 categories

  • unittest, tests against individual functions, usually @SmallTest and do not require UI automation nor real device to run
  • integration, this maybe a mix of functional and integration tests. Contains tests verify the WM Shell as a whole, like talking to WM core. This usually involves mocking the window manager service or even talking to the real one. Due to this nature, test cases in this package is normally annotated as @LargeTest and runs with UI automation on real device
  • flicker, similar to functional tests with its sole focus on flickerness. See WM Shell Flicker Test Package for more details