Rename SystemUI "Tests" classes to "Test"
Change-Id: Id29e76b7b1854be5dbf2077c809e7d848687cfa8
This commit is contained in:
@ -28,7 +28,7 @@ import static junit.framework.Assert.assertEquals;
|
||||
|
||||
@SmallTest
|
||||
@RunWith(AndroidJUnit4.class)
|
||||
public class TouchAnimatorTests extends SysuiTestCase {
|
||||
public class TouchAnimatorTest extends SysuiTestCase {
|
||||
|
||||
private Listener mTouchListener;
|
||||
private View mTestView;
|
@ -56,7 +56,7 @@ import org.mockito.Mockito;
|
||||
|
||||
@SmallTest
|
||||
@RunWith(AndroidJUnit4.class)
|
||||
public class TileLifecycleManagerTests extends SysuiTestCase {
|
||||
public class TileLifecycleManagerTest extends SysuiTestCase {
|
||||
public static final String TILE_UPDATE_BROADCAST = "com.android.systemui.tests.TILE_UPDATE";
|
||||
public static final String EXTRA_CALLBACK = "callback";
|
||||
|
@ -34,7 +34,7 @@ import static junit.framework.Assert.assertTrue;
|
||||
|
||||
@SmallTest
|
||||
@RunWith(AndroidJUnit4.class)
|
||||
public class TileServiceManagerTests extends SysuiTestCase {
|
||||
public class TileServiceManagerTest extends SysuiTestCase {
|
||||
|
||||
private TileServices mTileServices;
|
||||
private TileLifecycleManager mTileLifecycle;
|
||||
@ -52,7 +52,7 @@ public class TileServiceManagerTests extends SysuiTestCase {
|
||||
mTileLifecycle = Mockito.mock(TileLifecycleManager.class);
|
||||
Mockito.when(mTileLifecycle.isActiveTile()).thenReturn(false);
|
||||
ComponentName componentName = new ComponentName(mContext,
|
||||
TileServiceManagerTests.class);
|
||||
TileServiceManagerTest.class);
|
||||
Mockito.when(mTileLifecycle.getComponent()).thenReturn(componentName);
|
||||
mTileServiceManager = new TileServiceManager(mTileServices, mHandler, mTileLifecycle);
|
||||
}
|
@ -38,7 +38,7 @@ import org.mockito.Mockito;
|
||||
|
||||
@SmallTest
|
||||
@RunWith(AndroidJUnit4.class)
|
||||
public class TileServicesTests extends SysuiTestCase {
|
||||
public class TileServicesTest extends SysuiTestCase {
|
||||
private static int NUM_FAKES = TileServices.DEFAULT_MAX_BOUND * 2;
|
||||
|
||||
private TileServices mTileService;
|
@ -14,7 +14,7 @@
|
||||
* limitations under the License
|
||||
*/
|
||||
|
||||
package com.android.systemui.phone;
|
||||
package com.android.systemui.statusbar.phone;
|
||||
|
||||
import android.support.test.runner.AndroidJUnit4;
|
||||
import android.test.suitebuilder.annotation.SmallTest;
|
||||
@ -28,7 +28,7 @@ import static junit.framework.Assert.fail;
|
||||
|
||||
@SmallTest
|
||||
@RunWith(AndroidJUnit4.class)
|
||||
public class DozeParametersTests {
|
||||
public class DozeParametersTest {
|
||||
|
||||
@Test
|
||||
public void test_inOutMatcher_defaultIn() {
|
Reference in New Issue
Block a user