Home | History | Annotate | only in /packages/apps/Settings/tests/robotests
Up to higher level directory
NameDateSize
Android.mk21-Aug-20181.1K
assets/21-Aug-2018
config/21-Aug-2018
OWNERS21-Aug-201888
README.md21-Aug-2018432
res/21-Aug-2018
src/21-Aug-2018

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 
     17 For example:
     18 
     19 ```
     20 make RunSettingsRoboTests ROBOTEST_FILTER=CodeInspectionTest
     21 ```
     22 
     23 You can also use partial class name in ROBOTEST_FILTER. If the partial class name matches
     24 multiple file names, all of them will be executed.
     25