17 lines
381 B
Swift
17 lines
381 B
Swift
//
|
|
// TestConstants.swift
|
|
// StripeCoreTestUtils
|
|
//
|
|
// Created by Mel Ludowise on 10/26/21.
|
|
//
|
|
|
|
import Foundation
|
|
|
|
public let STPTestingNetworkRequestTimeout: TimeInterval = 8
|
|
|
|
@objc(TestConstants)
|
|
public class _objc_Constants: NSObject {
|
|
@objc(STPTestingNetworkRequestTimeout)
|
|
public static let _objc_STPTestingNetworkRequestTimeout = STPTestingNetworkRequestTimeout
|
|
}
|