Class org.mozilla.fenix.components.accounts.FenixAccountManagerTest
Tests
Test |
Duration |
Result |
GIVEN an account does not exist WHEN accountProfileEmail is called THEN it returns null |
0.006s |
passed |
GIVEN an account exists and doesn't need to be re-authenticated WHEN accountProfileEmail is called THEN it returns the associated email address |
0.008s |
passed |
GIVEN an account exists and doesn't need to be re-authenticated WHEN accountState is called THEN it returns AccountState#AUTHENTICATED |
0.007s |
passed |
GIVEN an account exists but needs to be re-authenticated WHEN accountProfileEmail is called THEN it returns null |
0.309s |
passed |
GIVEN an account exists but needs to be re-authenticated WHEN accountState is called THEN it returns AccountState#NEEDS_REAUTHENTICATION |
0.007s |
passed |
GIVEN no account exists WHEN accountState is called THEN it returns AccountState#NO_ACCOUNT |
0.007s |
passed |