• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 /*
2  * Copyright (C) 2013 The Android Open Source Project
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  *      http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16 package com.android.photos.data;
17 
18 import android.test.InstrumentationTestRunner;
19 import android.test.InstrumentationTestSuite;
20 
21 import com.android.photos.data.TestHelper.TestInitialization;
22 
23 import junit.framework.TestCase;
24 import junit.framework.TestSuite;
25 
26 public class DataTestRunner extends InstrumentationTestRunner {
27     @Override
getAllTests()28     public TestSuite getAllTests() {
29         TestSuite suite = new InstrumentationTestSuite(this);
30         suite.addTestSuite(PhotoDatabaseTest.class);
31         suite.addTestSuite(PhotoProviderTest.class);
32         TestHelper.addTests(MediaCacheTest.class, suite, new TestInitialization() {
33             @Override
34             public void initialize(TestCase testCase) {
35                 MediaCacheTest test = (MediaCacheTest) testCase;
36                 test.setLocalContext(getContext());
37             }
38         });
39         return suite;
40     }
41 
42     @Override
getLoader()43     public ClassLoader getLoader() {
44         return DataTestRunner.class.getClassLoader();
45     }
46 }
47