4664: Moved WelcomeActivity to ViewBinding (#5063)

* 4664: Moved WelcomeActivity to ViewBinding

* 4664: Removed non-null test on member variables
This commit is contained in:
Ankush Bose 2022-10-29 14:20:10 +05:30 committed by GitHub
parent 1a39c9f8b1
commit 10b025c237
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 25 additions and 35 deletions

View file

@ -39,14 +39,12 @@ class WelcomeActivityUnitTest {
}
/**
* Checks if the activity is not null and member variables are not null
* Checks if the activity is not null
*/
@Test
@Throws(Exception::class)
fun checkActivityNotNull() {
assertNotNull(activity)
assertNotNull(activity.pager)
assertNotNull(activity.indicator)
}
/**