• Home
Name Date Size #Lines LOC

..--

assets/03-May-2024-139134

config/03-May-2024-54

res/03-May-2024-884503

resources/META-INF/services/03-May-2024-95

src/com/android/settings/03-May-2024-200,152140,908

Android.bpD03-May-20243.1 KiB118102

AndroidManifest.xmlD03-May-2024238 96

OWNERSD03-May-202488 22

README.mdD03-May-2024432 2517

new_tests_hook.shD03-May-2024603 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