1
0
mirror of https://github.com/mastodon/mastodon-ios.git synced 2025-01-24 14:30:47 +01:00
mastodon-app-ufficiale-ipho.../MastodonSDK/Tests/MastodonSDKTests/MastodonSDKTests.swift
2021-02-03 18:52:47 +08:00

17 lines
418 B
Swift

import XCTest
import Combine
@testable import MastodonSDK
final class MastodonSDKTests: XCTestCase {
var disposeBag = Set<AnyCancellable>()
let session = URLSession(configuration: .ephemeral)
var domain: String { MastodonSDKTests.environmentVariable(key: "domain") }
static func environmentVariable(key: String) -> String {
return ProcessInfo.processInfo.environment[key]!
}
}