Skip to content

Instantly share code, notes, and snippets.

@Nikoloutsos
Created May 8, 2022 12:19
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Nikoloutsos/5a77c198cbb4d53d3f0d77ea5c37ba71 to your computer and use it in GitHub Desktop.
Save Nikoloutsos/5a77c198cbb4d53d3f0d77ea5c37ba71 to your computer and use it in GitHub Desktop.
// Generated using Sourcery 1.8.1 — https://github.com/krzysztofzablocki/Sourcery
// DO NOT EDIT
// 💙💙 Autogenerated for saving Beegees time ⏰
// swiftlint:disable all
@testable import
import Foundation
extension Human {
static func fixtures(
firstName: String = "The fixture will have this string as default value",
lastName: String = "Lorem ipsum",
fatherName: String = "Lorem ipsum",
motherName: String = "Lorem ipsum",
address: Location = .init(),
age: Int = 666
) -> Human {
return .init(
firstName: firstName,
lastName: lastName,
fatherName: fatherName,
motherName: motherName,
address: address,
age: age
)
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment