Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,11 @@ jobs:
- run:
name: Run Build
command: ./gradlew assembleDebug
- run:
name: Run Test
command: ./gradlew test


# - store_artifacts:
# path: app/build/reports
# destination: reports
Expand Down
Original file line number Diff line number Diff line change
@@ -1,20 +1,16 @@
package in.tosc.digitaloceanapp.fragments;


import org.junit.Before;
import org.junit.Test;

import in.tosc.digitaloceanapp.R;

import static android.support.test.espresso.Espresso.onView;
import static android.support.test.espresso.action.ViewActions.click;


import in.tosc.digitaloceanapp.R;
import static in.tosc.digitaloceanapp.matchers.RecyclerViewMatcher.withRecyclerView;

import static junit.framework.Assert.assertNotNull;

import org.junit.Before;
import org.junit.Test;

public class SelectImageFragmentTest {

public FragmentTestRule<SelectImageFragment> mFragmentTestRule =
Expand Down