Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 6e23da5c authored by Geoffrey Pitsch's avatar Geoffrey Pitsch Committed by Android (Google) Code Review
Browse files

Merge "Rename SystemUI "Tests" classes to "Test""

parents 5e7d9358 fc2b64e3
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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;
+1 −1
Original line number Diff line number Diff line
@@ -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";

+2 −2
Original line number Diff line number Diff line
@@ -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);
    }
+1 −1
Original line number Diff line number Diff line
@@ -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;
+2 −2
Original line number Diff line number Diff line
@@ -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() {