• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..12-Dec-2023-

assets/H12-Dec-2023-140135

config/H12-Dec-2023-54

res/H12-Dec-2023-884503

resources/META-INF/services/H12-Dec-2023-95

src/com/android/settings/H12-Dec-2023-180,712126,216

Android.bpH A D12-Dec-20233.1 KiB118102

AndroidManifest.xmlH A D12-Dec-2023238 96

OWNERSH A D12-Dec-202388 22

README.mdH A D12-Dec-2023432 2517

new_tests_hook.shH A D12-Dec-2023603 1710

README.md

1# Running Settings Robolectric tests
2
3
4## The full suite
5```
6$ croot
7$ make RunSettingsRoboTests
8```
9
10## Running a single test class
11
12```
13$ croot
14$ make RunSettingsRoboTests ROBOTEST_FILTER=<ClassName>
15```
16
17For example:
18
19```
20make RunSettingsRoboTests ROBOTEST_FILTER=CodeInspectionTest
21```
22
23You can also use partial class name in ROBOTEST_FILTER. If the partial class name matches
24multiple file names, all of them will be executed.
25