NotificationsActivityIT.java 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. /*
  2. *
  3. * Nextcloud Android client application
  4. *
  5. * @author Tobias Kaminsky
  6. * Copyright (C) 2020 Tobias Kaminsky
  7. * Copyright (C) 2020 Nextcloud GmbH
  8. *
  9. * This program is free software: you can redistribute it and/or modify
  10. * it under the terms of the GNU Affero General Public License as published by
  11. * the Free Software Foundation, either version 3 of the License, or
  12. * (at your option) any later version.
  13. *
  14. * This program is distributed in the hope that it will be useful,
  15. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  16. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  17. * GNU Affero General Public License for more details.
  18. *
  19. * You should have received a copy of the GNU Affero General Public License
  20. * along with this program. If not, see <https://www.gnu.org/licenses/>.
  21. */
  22. package com.nextcloud.client;
  23. import android.Manifest;
  24. import com.owncloud.android.AbstractIT;
  25. import com.owncloud.android.ui.activity.NotificationsActivity;
  26. import com.owncloud.android.utils.ScreenshotTest;
  27. import org.junit.Rule;
  28. import org.junit.Test;
  29. import androidx.test.espresso.intent.rule.IntentsTestRule;
  30. import androidx.test.rule.GrantPermissionRule;
  31. public class NotificationsActivityIT extends AbstractIT {
  32. @Rule public IntentsTestRule<NotificationsActivity> activityRule = new IntentsTestRule<>(NotificationsActivity.class,
  33. true,
  34. false);
  35. @Rule
  36. public final GrantPermissionRule permissionRule = GrantPermissionRule.grant(
  37. Manifest.permission.WRITE_EXTERNAL_STORAGE);
  38. @Test
  39. @ScreenshotTest
  40. public void openDrawer() {
  41. super.openDrawer(activityRule);
  42. }
  43. }