We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bb65b24 commit 5011448Copy full SHA for 5011448
app/build.properties
@@ -1,7 +1,7 @@
1
#Build Properties
2
-#Tue Sep 27 10:54:09 EDT 2022
+#Tue Sep 27 11:23:37 EDT 2022
3
version_minor=0
4
version_store=61
5
version_patch=9
6
-version_build=1
+version_build=2
7
version_major=3
app/src/test/kotlin/com/vrem/util/CompatUtilsTest.kt
@@ -160,6 +160,17 @@ class CompatUtilsTest {
160
verify(scanResult).wifiSsid
161
}
162
163
+ @Test
164
+ fun testScanResultSSIDWhenWifiSsidNull() {
165
+ // setup
166
+ whenever(scanResult.wifiSsid).thenReturn(null)
167
+ // execute
168
+ val actual = scanResult.ssid()
169
+ // validate
170
+ assertEquals(String.EMPTY, actual)
171
+ verify(scanResult).wifiSsid
172
+ }
173
+
174
@Test
175
fun testScanResultSSIDWhenNull() {
176
// setup
0 commit comments