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 @@ -37,7 +37,7 @@ import org.hamcrest.Matchers.`is`
@RunWith(AndroidJUnit4::class)
class MainActivityTest {

object AndroidTestMockFactory {
object AndroidTestFactory {
const val FILTER = "filter"
}

Expand All @@ -53,7 +53,7 @@ class MainActivityTest {
val nextFragment = onView(withId(R.id.fragment_container_view_tag))

// Секция взаимодействия с компонентами
editText.perform(typeText(AndroidTestMockFactory.FILTER))
editText.perform(typeText(AndroidTestFactory.FILTER))
button.perform(click())

// Секция проверки
Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ allprojects {
ext {
compileSdkVersion = 29
targetSdkVersion = 29
minSdkVersion = 21
minSdkVersion = 24
buildToolsVersion = "30.0.2"
versionCode = 5
versionName = "1.2"
Expand Down