Search in sources :

Example 46 with UiThreadTest

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

the class ViewGroupChildrenTest method testAddChildAtFront.

@UiThreadTest
@MediumTest
public void testAddChildAtFront() throws Exception {
    // 24 should be greater than ViewGroup.ARRAY_CAPACITY_INCREMENT
    for (int i = 0; i < 24; i++) {
        View view = createView(String.valueOf(i + 1));
        mGroup.addView(view);
    }
    View view = createView("X");
    mGroup.addView(view, 0);
    assertEquals(25, mGroup.getChildCount());
    ViewAsserts.assertGroupIntegrity(mGroup);
    ViewAsserts.assertGroupContains(mGroup, view);
    assertSame(view, mGroup.getChildAt(0));
}
Also used : TextView(android.widget.TextView) View(android.view.View) UiThreadTest(android.test.UiThreadTest) MediumTest(android.test.suitebuilder.annotation.MediumTest)

Example 47 with UiThreadTest

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

the class WindowDecorActionBarTest method testStartActionModeFinishesPreviousMode.

@UiThreadTest
public void testStartActionModeFinishesPreviousMode() {
    ActionMode mode1 = mWindowDecorActionBar.startActionMode(mCallback);
    ActionMode mode2 = mWindowDecorActionBar.startActionMode(new MockActionModeCallback());
    assertNotNull(mode1);
    assertNotNull(mode2);
    assertTrue(mCallback.mIsDestroyActionModeCalled);
}
Also used : ActionMode(android.view.ActionMode) UiThreadTest(android.test.UiThreadTest)

Example 48 with UiThreadTest

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

the class WindowDecorActionBarTest method testStartActionModeWhenCreateReturnsFalse.

@UiThreadTest
public void testStartActionModeWhenCreateReturnsFalse() {
    mCallback.mShouldCreateActionMode = false;
    ActionMode mode = mWindowDecorActionBar.startActionMode(mCallback);
    assertNull(mode);
    assertTrue(mCallback.mIsCreateActionModeCalled);
}
Also used : ActionMode(android.view.ActionMode) UiThreadTest(android.test.UiThreadTest)

Example 49 with UiThreadTest

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

the class WindowDecorActionBarTest method testStartActionMode.

@UiThreadTest
public void testStartActionMode() {
    ActionMode mode = mWindowDecorActionBar.startActionMode(mCallback);
    assertNotNull(mode);
    assertTrue(mCallback.mIsCreateActionModeCalled);
}
Also used : ActionMode(android.view.ActionMode) UiThreadTest(android.test.UiThreadTest)

Example 50 with UiThreadTest

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

the class StateListAnimatorTest method testAttachDetach.

@UiThreadTest
public void testAttachDetach() throws Exception {
    View view = new View(getActivity());
    final AtomicInteger setStateCount = new AtomicInteger(0);
    StateListAnimator stateListAnimator = new StateListAnimator() {

        @Override
        public void setState(int[] state) {
            setStateCount.incrementAndGet();
            super.setState(state);
        }
    };
    view.setStateListAnimator(stateListAnimator);
    assertNotNull("State list animator should have a reference to view even if it is detached", stateListAnimator.getTarget());
    ViewGroup viewGroup = (ViewGroup) getActivity().findViewById(android.R.id.content);
    int preSetStateCount = setStateCount.get();
    viewGroup.addView(view);
    assertTrue("When view is attached, state list drawable's setState should be called", preSetStateCount < setStateCount.get());
    StateListAnimator stateListAnimator2 = new StateListAnimator();
    view.setStateListAnimator(stateListAnimator2);
    assertNull("When a new state list animator is assigned, previous one should be detached", stateListAnimator.getTarget());
    assertNull("Any running animator should be removed on detach", stateListAnimator.getRunningAnimator());
    assertEquals("The new state list animator should be attached to the view", view, stateListAnimator2.getTarget());
    viewGroup.removeView(view);
    assertNotNull("When view is detached from window, state list animator should still keep the" + " reference", stateListAnimator2.getTarget());
}
Also used : AtomicInteger(java.util.concurrent.atomic.AtomicInteger) ViewGroup(android.view.ViewGroup) View(android.view.View) 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