Search in sources :

Example 56 with UiThreadTest

use of android.test.UiThreadTest in project android_frameworks_base by crdroidandroid.

the class ViewGroupChildrenTest method testRemoveChild.

@UiThreadTest
@MediumTest
public void testRemoveChild() throws Exception {
    View view = createView("1");
    mGroup.addView(view);
    ViewAsserts.assertGroupIntegrity(mGroup);
    mGroup.removeView(view);
    ViewAsserts.assertGroupIntegrity(mGroup);
    ViewAsserts.assertGroupNotContains(mGroup, view);
    assertEquals(0, mGroup.getChildCount());
    assertNull(view.getParent());
}
Also used : TextView(android.widget.TextView) View(android.view.View) UiThreadTest(android.test.UiThreadTest) MediumTest(android.test.suitebuilder.annotation.MediumTest)

Example 57 with UiThreadTest

use of android.test.UiThreadTest in project android_frameworks_base by crdroidandroid.

the class ViewGroupChildrenTest method testAddChild.

@UiThreadTest
@MediumTest
public void testAddChild() throws Exception {
    View view = createView("1");
    mGroup.addView(view);
    assertEquals(1, mGroup.getChildCount());
    ViewAsserts.assertGroupIntegrity(mGroup);
    ViewAsserts.assertGroupContains(mGroup, view);
}
Also used : TextView(android.widget.TextView) View(android.view.View) UiThreadTest(android.test.UiThreadTest) MediumTest(android.test.suitebuilder.annotation.MediumTest)

Example 58 with UiThreadTest

use of android.test.UiThreadTest in project android_frameworks_base by crdroidandroid.

the class PhoneWindowActionModeTest method testCreatedPrimaryModeLifecycleIsHandled.

@UiThreadTest
public void testCreatedPrimaryModeLifecycleIsHandled() {
    mWindowCallback.mShouldReturnOwnActionMode = false;
    ActionMode mode = mPhoneWindow.getDecorView().startActionMode(mActionModeCallback, ActionMode.TYPE_PRIMARY);
    assertNotNull(mode);
    assertEquals(ActionMode.TYPE_PRIMARY, mode.getType());
    assertTrue(mActionModeCallback.mIsCreateActionModeCalled);
    assertTrue(mWindowCallback.mIsActionModeStarted);
}
Also used : ActionMode(android.view.ActionMode) UiThreadTest(android.test.UiThreadTest)

Example 59 with UiThreadTest

use of android.test.UiThreadTest in project double-espresso by JakeWharton.

the class ViewFinderImplTest method testGetView_missing.

@UiThreadTest
public void testGetView_missing() {
    ViewFinder finder = new ViewFinderImpl(Matchers.<View>nullValue(), testViewProvider);
    try {
        finder.getView();
        fail("No children should pass that matcher!");
    } catch (NoMatchingViewException expected) {
    }
}
Also used : ViewFinder(com.google.android.apps.common.testing.ui.espresso.ViewFinder) NoMatchingViewException(com.google.android.apps.common.testing.ui.espresso.NoMatchingViewException) UiThreadTest(android.test.UiThreadTest)

Example 60 with UiThreadTest

use of android.test.UiThreadTest in project android_frameworks_base by AOSPA.

the class ViewAttachTest method testRoundScrollbars.

/**
     * Make sure that on any attached view, if the view is full-screen and hosted
     * on a round device, the round scrollbars will be displayed even if the activity
     * window is offset.
     *
     * @throws Throwable
     */
@UiThreadTest
public void testRoundScrollbars() throws Throwable {
    final ViewAttachTestActivity activity = getActivity();
    final View rootView = activity.getWindow().getDecorView();
    final WindowManager.LayoutParams params = new WindowManager.LayoutParams(rootView.getWidth(), rootView.getHeight(), 50, /* xPosition */
    0, /* yPosition */
    WindowManager.LayoutParams.TYPE_SYSTEM_OVERLAY, WindowManager.LayoutParams.FLAG_LAYOUT_IN_SCREEN, PixelFormat.TRANSLUCENT);
    rootView.setLayoutParams(params);
    View contentView = activity.findViewById(R.id.view_attach_view);
    boolean shouldDrawRoundScrollbars = contentView.shouldDrawRoundScrollbar();
    if (activity.getResources().getConfiguration().isScreenRound()) {
        assertTrue(shouldDrawRoundScrollbars);
    } else {
        // Never draw round scrollbars on non-round devices.
        assertFalse(shouldDrawRoundScrollbars);
    }
}
Also used : View(android.view.View) WindowManager(android.view.WindowManager) UiThreadTest(android.test.UiThreadTest)

Aggregations

UiThreadTest (android.test.UiThreadTest)127 View (android.view.View)69 MediumTest (android.test.suitebuilder.annotation.MediumTest)48 TextView (android.widget.TextView)32 ActionMode (android.view.ActionMode)30 StubbedView (android.view.StubbedView)18 ViewStub (android.view.ViewStub)18 GitHubEvent (com.meisolsson.githubsdk.model.GitHubEvent)15 Button (android.widget.Button)14 InOrder (com.google.testing.littlemock.LittleMock.InOrder)10 FragmentManager (android.support.v4.app.FragmentManager)5 ViewGroup (android.view.ViewGroup)5 AtomicInteger (java.util.concurrent.atomic.AtomicInteger)5 WindowManager (android.view.WindowManager)4 ViewFinder (com.google.android.apps.common.testing.ui.espresso.ViewFinder)3 Issue (com.meisolsson.githubsdk.model.Issue)2 User (com.meisolsson.githubsdk.model.User)2 CreatePayload (com.meisolsson.githubsdk.model.payload.CreatePayload)2 Computer (com.octo.android.sample.model.Computer)2 DummyComputer (com.octo.android.sample.model.DummyComputer)2