This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| package com.goblin.qrhunter.firebase; | |
| import static org.junit.Assert.assertEquals; | |
| import static org.junit.Assert.assertTrue; | |
| import static org.junit.Assert.assertNotNull; | |
| import static org.junit.Assert.assertFalse; | |
| import static org.junit.Assert.fail; | |
| import android.content.Context; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /** | |
| * This package contains classes related to the user profile screen. | |
| * The ProfileFragment class is the main fragment for displaying the user's profile information, | |
| * including their username and a button to sign out. | |
| * The ProfileViewModel class provides the data and logic for the ProfileFragment. | |
| */ | |
| package com.goblin.qrhunter.ui.profile; | |
| import android.content.Intent; | |
| import android.os.Bundle; |