MVVM on Android

Sep 1 2022 · Kotlin 1.6, Android 12, Android Studio Chipmunk | 2021.2.1 Patch 1

Part 1: MVVM on Android

07. Test the ViewModel

Episode complete

Play next episode

Next
About this episode
Leave a rating/review
See forum comments
Cinema mode Mark complete Download course materials
Previous episode: 06. Build the ViewModel Next episode: 08. Save Data to the Repository

Get immediate access to this and 4,000+ other videos and books.

Take your career further with a Kodeco Personal Plan. With unlimited access to over 40+ books and 4,000+ professional videos in a single subscription, it's simply the best investment you can make in your development career.

Learn more Already a subscriber? Sign in.

Notes: 07. Test the ViewModel

You’ll need to add the mockito-inline dependency because you could get into some issues when trying to moch the CreatureGenerator class. This is added in the final project in the download materials.

Heads up... You've reached locked video content where the transcript will be shown as obfuscated text.

When testing the model layer, we used TDD. For the view model, we’ll now add an after-the-fact test for the view model we’ve just created.

  testImplementation "org.mockito:mockito-core:2.11.0"
testImplementation "android.arch.core:core-testing:$arch_comp_version"
class CreatureViewModelTest {
}
  private lateinit var creatureViewModel: CreatureViewModel
  @get:Rule
  var rule: TestRule = InstantTaskExecutorRule()
  @Mock
  lateinit var mockGenerator: CreatureGenerator
  
  @Before
  fun setup() {
    MockitoAnnotations.initMocks(this)
    creatureViewModel = CreatureViewModel(mockGenerator)
  }
  @Test
  fun testSetupCreature() {
    val attributes = CreatureAttributes(10, 3, 7)
    val stubCreature = Creature(attributes, 87, "Test Creature")
    `when`(mockGenerator.generateCreature(attributes)).thenReturn(stubCreature)
    
    creatureViewModel.intelligence = 10
    creatureViewModel.strength = 3
    creatureViewModel.endurance = 7
  }
 
    creatureViewModel.updateCreature()
   
    assertEquals(`stubCreature`, creatureViewModel.creature)