Initial commit

This commit is contained in:
myitschool
2022-12-15 14:33:48 +03:00
commit ec00f141ae
34 changed files with 807 additions and 0 deletions

View File

@@ -0,0 +1,18 @@
package ru.myitschool.lab23
import androidx.test.espresso.*
import androidx.test.espresso.matcher.ViewMatchers.*
import androidx.test.ext.junit.runners.AndroidJUnit4
import androidx.test.filters.MediumTest
import org.junit.*
import org.junit.runner.RunWith
import org.junit.runners.MethodSorters
import java.util.*
@RunWith(AndroidJUnit4::class)
@FixMethodOrder(MethodSorters.NAME_ASCENDING)
@MediumTest
class InstrumentedTestGeo {
}