google-developer-training / basic-android-kotlin-compose-training-unscramble

Apache License 2.0
98 stars 139 forks source link

Android Basics: Viewmodel and State with Compose #173

Open DDDDDamir opened 9 months ago

DDDDDamir commented 9 months ago

val unScrambledWord != val correctPlayerWord

6).... @Test fun gameViewModel_CorrectWordGuessed_ScoreUpdatedAndErrorFlagUnset() { var currentGameUiState = viewModel.uiState.value //val unScrambledWord = getUnscrambledWord(currentGameUiState.currentScrambledWord)

}

7)....

@Test fun gameViewModel_CorrectWordGuessed_ScoreUpdatedAndErrorFlagUnset() { var currentGameUiState = viewModel.uiState.value // val correctPlayerWord = getUnscrambledWord(currentGameUiState.currentScrambledWord)

viewModel.updateUserGuess(correctPlayerWord)
viewModel.checkUserGuess()

}