JUnitHelper
用于 JUnit 测试的实用程序,例如解锁和锁定键盘锁。 这有助于需要屏幕锁定和解锁的 JUnit 测试用例。
解锁并打开屏幕
安装此应用程序并将以下代码放入 TestCase#setup。
{ // Unlock keyguard and screen on
// need https://github.com/cattaka/JUnitHelper
KeyguardManager km = ( KeyguardManager ) getInstrumentation() . getTargetContext() . getSystemService( Context . KEYGUARD_SERVICE );
PowerManager pm = ( PowerManager ) getInstrumentation() . get
2021-10-09 17:59:45
114KB
Java
1