Initial commit

This commit is contained in:
myitschool
2023-02-04 19:55:35 +03:00
commit eb516f6ac3
34 changed files with 815 additions and 0 deletions

View File

@@ -0,0 +1,17 @@
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 InstrumentedTestBarometer {
}