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
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ import androidx.test.espresso.action.ViewActions.click
import androidx.test.espresso.intent.Intents
import androidx.test.espresso.intent.matcher.IntentMatchers.hasComponent
import androidx.test.espresso.matcher.ViewMatchers
import androidx.test.espresso.matcher.ViewMatchers.withId
import androidx.test.espresso.matcher.ViewMatchers.withText
import androidx.test.ext.junit.rules.activityScenarioRule
import androidx.test.ext.junit.runners.AndroidJUnit4
Expand Down Expand Up @@ -206,6 +207,8 @@ class StartTest {
Timber.d("Unknown activity type: ${it.simpleName}")
}

onView(withId(R.id.chart1)).perform(click())

//Thread.sleep(100)
Espresso.pressBack()

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,7 @@ class CombinedData : BarLineScatterCandleBubbleData<IBarLineScatterCandleBubbleD
return null

// The value of the highlighted entry could be NaN -
// if we are not interested in highlighting a specific value.
// if we are not interested in highlighting a specific value.
val entries = data.getDataSetByIndex(highlight.dataSetIndex)!!
.getEntriesForXValue(highlight.x)
for (entry in entries!!) if (entry.y == highlight.y ||
Expand Down
Loading