1 package android.cts.statsd.validation;
2 
3 import android.cts.statsd.atom.DeviceAtomTestCase;
4 
5 /**
6  * Tests Suite for directories used by Statsd.
7  */
8 public class DirectoryValidationTest extends DeviceAtomTestCase {
9 
testStatsActiveMetricDirectoryExists()10     public void testStatsActiveMetricDirectoryExists() throws Exception {
11         runDeviceTests(DEVICE_SIDE_TEST_PACKAGE,
12                 ".DirectoryTests", "testStatsActiveMetricDirectoryExists");
13     }
14 
testStatsDataDirectoryExists()15     public void testStatsDataDirectoryExists() throws Exception {
16         runDeviceTests(DEVICE_SIDE_TEST_PACKAGE,
17                 ".DirectoryTests", "testStatsDataDirectoryExists");
18     }
19 
testStatsMetadataDirectoryExists()20     public void testStatsMetadataDirectoryExists() throws Exception {
21         runDeviceTests(DEVICE_SIDE_TEST_PACKAGE,
22                 ".DirectoryTests", "testStatsMetadataDirectoryExists");
23     }
24 
testStatsServiceDirectoryExists()25     public void testStatsServiceDirectoryExists() throws Exception {
26         runDeviceTests(DEVICE_SIDE_TEST_PACKAGE,
27                 ".DirectoryTests", "testStatsServiceDirectoryExists");
28     }
29 
testTrainInfoDirectoryExists()30     public void testTrainInfoDirectoryExists() throws Exception {
31         runDeviceTests(DEVICE_SIDE_TEST_PACKAGE,
32                 ".DirectoryTests", "testTrainInfoDirectoryExists");
33     }
34 }
35