New policy: b/175024829 Settings key: <one_handed_*> is not readable. From S+, new public settings keys need to be annotated with @Readable unless they are annotated with @hide. Recent changes : ag/13764747 Remove @Readable for hidden fields added in S Test: atest WMShellUnitTests Bug: 183064974 Change-Id: I185491189a3804d7038be3c117583ab571e7a961
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