mirror of
https://github.com/bitwarden/ios.git
synced 2025-12-12 18:30:41 -06:00
15 lines
460 B
Swift
15 lines
460 B
Swift
/// Fake Data used in tests
|
|
public enum FakeData {
|
|
/// A fake email address equal to `email1@example.com`
|
|
public static let email1 = "email1@example.com"
|
|
|
|
/// A fake email address equal to `email2@example.com`
|
|
public static let email2 = "email2@example.com"
|
|
|
|
/// A fake username equal to `username1`
|
|
public static let username1 = "username1"
|
|
|
|
/// A fake username equal to `username2`
|
|
public static let username2 = "username2"
|
|
}
|