Skip to content

Instantly share code, notes, and snippets.

View vfadc's full-sized avatar

Vladimir Frolov vfadc

  • FunCorp
View GitHub Profile
@vfadc
vfadc / LaunchArgsHandle.swift
Last active November 3, 2022 12:48
ios LaunchArgs handle
enum LaunchArgs: String, CaseIterable {
case fakeApiUrl = "--fake_api_url"
case accessToken = "--access_token"
}
public protocol UITestsArgumentsHandler {
func handleProcessArgument(_ processArgument: String?)
}
public class UITestsArgumentsAuthHandler: UITestsArgumentsHandler {