ios/TestHelpers/Support/FakeData.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"
}