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

Commit 7e8798c1 authored by Julien Desprez's avatar Julien Desprez
Browse files

Revert "Remove @Ignore from class level"

This reverts commit 53d4a34c.

Reason for revert: once cr/233102640 is submitted it should properly filter out the Ignore from the class level and avoid the issue completely.
Bug: 124056776
Change-Id: Idbeda8e21d35710cdc291a2a8012fbd0d5752c14
parent 53d4a34c
Loading
Loading
Loading
Loading
+1 −4
Original line number Diff line number Diff line
@@ -50,6 +50,7 @@ import org.junit.Test;
import org.junit.runner.RunWith;

@SmallTest
@Ignore("failing")
@RunWith(AndroidTestingRunner.class)
@RunWithLooper
public class DozeTriggersTest extends SysuiTestCase {
@@ -89,7 +90,6 @@ public class DozeTriggersTest extends SysuiTestCase {
    }

    @Test
    @Ignore
    public void testOnNotification_stillWorksAfterOneFailedProxCheck() throws Exception {
        when(mMachine.getState()).thenReturn(DozeMachine.State.DOZE);

@@ -111,7 +111,6 @@ public class DozeTriggersTest extends SysuiTestCase {
    }

    @Test
    @Ignore
    public void testDockEventListener_registerAndUnregister() {
        mTriggers.transitionTo(DozeMachine.State.UNINITIALIZED, DozeMachine.State.INITIALIZED);

@@ -123,7 +122,6 @@ public class DozeTriggersTest extends SysuiTestCase {
    }

    @Test
    @Ignore
    public void testOnSensor_whenUndockedWithNearAndDoubleTapScreen_shouldNotWakeUp() {
        mSensors.getMockProximitySensor().sendProximityResult(false /* far */);

@@ -135,7 +133,6 @@ public class DozeTriggersTest extends SysuiTestCase {
    }

    @Test
    @Ignore
    public void testOnSensor_whenDockedWithNearAndDoubleTapScreen_shouldWakeUp() {
        doReturn(true).when(mDockManagerFake).isDocked();
        mSensors.getMockProximitySensor().sendProximityResult(false /* far */);
+1 −0
Original line number Diff line number Diff line
@@ -56,6 +56,7 @@ import org.junit.runner.RunWith;
@RunWith(AndroidTestingRunner.class)
@RunWithLooper
@SmallTest
@Ignore
public class QSFragmentTest extends SysuiBaseFragmentTest {

    private MetricsLogger mMockMetricsLogger;
+1 −0
Original line number Diff line number Diff line
@@ -52,6 +52,7 @@ import org.mockito.MockitoAnnotations;
@SmallTest
@RunWith(AndroidTestingRunner.class)
@TestableLooper.RunWithLooper
@Ignore("b/118400112")
public class NonPhoneDependencyTest extends SysuiTestCase {
    @Mock private NotificationPresenter mPresenter;
    @Mock private NotificationListContainer mListContainer;