Skip to content

Commit 8ee91f9

Browse files
cleanup
1 parent 5b4f02d commit 8ee91f9

2 files changed

Lines changed: 30 additions & 3 deletions

File tree

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
<?xml version="1.0" encoding="UTF-8" standalone="no"?><!--
2+
~ WiFiAnalyzer
3+
~ Copyright (C) 2015 - 2025 VREM Software Development <VREMSoftwareDevelopment@gmail.com>
4+
~
5+
~ This program is free software: you can redistribute it and/or modify
6+
~ it under the terms of the GNU General Public License as published by
7+
~ the Free Software Foundation, either version 3 of the License, or
8+
~ (at your option) any later version.
9+
~
10+
~ This program is distributed in the hope that it will be useful,
11+
~ but WITHOUT ANY WARRANTY; without even the implied warranty of
12+
~ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13+
~ GNU General Public License for more details.
14+
~
15+
~ You should have received a copy of the GNU General Public License
16+
~ along with this program. If not, see <http://www.gnu.org/licenses/>
17+
-->
18+
19+
<vector xmlns:android="http://schemas.android.com/apk/res/android"
20+
android:width="24dp"
21+
android:height="24dp"
22+
android:viewportWidth="960"
23+
android:viewportHeight="960">
24+
<path
25+
android:fillColor="#9E9E9E"
26+
android:pathData="M120,720v-80h720v80L120,720ZM120,520v-80h720v80L120,520ZM120,320v-80h720v80L120,320Z" />
27+
</vector>

app/src/test/kotlin/com/vrem/wifianalyzer/wifi/filter/FilterTest.kt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ class FilterTest {
9292
button.performClick()
9393
// validate
9494
RobolectricUtil.INSTANCE.clearLooper()
95-
assertThat(fixture.alertDialog!!.isShowing).isFalse()
95+
assertThat(fixture.alertDialog.isShowing).isFalse()
9696
verify(filtersAdapter).save()
9797
verify(mainActivity).update()
9898
}
@@ -108,7 +108,7 @@ class FilterTest {
108108
button.performClick()
109109
// validate
110110
RobolectricUtil.INSTANCE.clearLooper()
111-
assertThat(fixture.alertDialog!!.isShowing).isFalse()
111+
assertThat(fixture.alertDialog.isShowing).isFalse()
112112
verify(filtersAdapter).reset()
113113
verify(mainActivity).update()
114114
}
@@ -124,7 +124,7 @@ class FilterTest {
124124
button.performClick()
125125
// validate
126126
RobolectricUtil.INSTANCE.clearLooper()
127-
assertThat(fixture.alertDialog!!.isShowing).isFalse()
127+
assertThat(fixture.alertDialog.isShowing).isFalse()
128128
verify(filtersAdapter).reload()
129129
verify(mainActivity, never()).update()
130130
}

0 commit comments

Comments
 (0)