File tree Expand file tree Collapse file tree 2 files changed +7
-1
lines changed
gradle-tests/orchestrator
src/androidTest/java/androidx/test/gradletests/orchestrator Expand file tree Collapse file tree 2 files changed +7
-1
lines changed Original file line number Diff line number Diff line change @@ -14,7 +14,8 @@ android {
14
14
compileSdk rootProject. ext. compileSdk
15
15
16
16
defaultConfig {
17
- minSdk rootProject. ext. minSdk
17
+ // test with whitespace requires min sdk 30
18
+ minSdk 30
18
19
targetSdk rootProject. ext. targetSdk
19
20
20
21
testInstrumentationRunner " androidx.test.runner.AndroidJUnitRunner"
Original file line number Diff line number Diff line change @@ -37,6 +37,11 @@ class OrchestratorTest {
37
37
verifyStorageClearedThenAdd()
38
38
}
39
39
40
+ @Test
41
+ fun `test with whitespace` () {
42
+
43
+ }
44
+
40
45
private fun verifyStorageClearedThenAdd () {
41
46
val savedFile =
42
47
File (ApplicationProvider .getApplicationContext<Context >().filesDir, " myfile.txt" )
You can’t perform that action at this time.
0 commit comments