Created
September 20, 2018 09:18
-
-
Save Arrlindii/f5f054b64f13affe87b3e78fdf892c3d to your computer and use it in GitHub Desktop.
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
| func testPaswordRetrive() { | |
| let password = "123456" | |
| let account = "User" | |
| keyChainService.save(password, for: account) | |
| XCTAssertEqual(keyChainService.retrivePassword(for: account), password) | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment