-
-
Notifications
You must be signed in to change notification settings - Fork 41
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
23 additions
and
0 deletions.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
import unittest | ||
from identity import IdentityManager # Assuming you have an IdentityManager class | ||
|
||
class TestIdentityManager(unittest.TestCase): | ||
def setUp(self): | ||
self.identity_manager = IdentityManager() | ||
|
||
def test_create_identity(self): | ||
identity = self.identity_manager.create_identity("Alice", "[email protected]") | ||
self.assertIsNotNone(identity) | ||
self.assertEqual(identity.name, "Alice") | ||
|
||
def test_get_identity(self): | ||
self.identity_manager.create_identity("Bob", "[email protected]") | ||
identity = self.identity_manager.get_identity("Bob") | ||
self.assertEqual(identity.email, "[email protected]") | ||
|
||
def test_identity_not_found(self): | ||
identity = self.identity_manager.get_identity("NonExistent") | ||
self.assertIsNone(identity) | ||
|
||
if __name__ == "__main__": | ||
unittest.main() |