We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
In the Section 4 of this codelab : Write unit tests for ViewModel mentioned this statement
Note: The code above uses the thingUnderTest_TriggerOfTest_ResultOfTest format to name the test function name: thingUnderTest = gameViewModel TriggerOfTest = CorrectWordGuessed ResultOfTest = ScoreUpdatedAndErrorFlagUnset
Note: The code above uses the thingUnderTest_TriggerOfTest_ResultOfTest format to name the test function name:
thingUnderTest = gameViewModel TriggerOfTest = CorrectWordGuessed ResultOfTest = ScoreUpdatedAndErrorFlagUnset
But the test function name in this codelab don't follow that format. For example,
fun compactDevice_selectedEmailEmailRetained_afterConfigChange()
If we are still following the aformentioned format in "Write unit tests for ViewModel", the test function name will be,
fun compactDevice_configChanged_selectedEmailRetained()
I'm just curious since there's no additional statement about format to name the test function name in this codelab.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
In the Section 4 of this codelab : Write unit tests for ViewModel mentioned this statement
But the test function name in this codelab don't follow that format. For example,
If we are still following the aformentioned format in "Write unit tests for ViewModel", the test function name will be,
I'm just curious since there's no additional statement about format to name the test function name in this codelab.
The text was updated successfully, but these errors were encountered: