mirror of
https://gitlab.linphone.org/BC/public/linphone-iphone.git
synced 2026-01-17 11:08:06 +00:00
24 lines
456 B
Swift
24 lines
456 B
Swift
//
|
|
// ConferenceCallViewUITestsMethods.swift
|
|
// ConferenceUITests
|
|
//
|
|
// Created by Quentin Monnier on 05/08/2022.
|
|
//
|
|
|
|
import XCTest
|
|
import linphonesw
|
|
|
|
class ConferrenceCallViewUITestsMethods {
|
|
|
|
let app: XCUIApplication
|
|
let appAccountAuthInfo = UITestsCoreManager.instance.appAccountAuthInfo!
|
|
let ghostAccounts = UITestsCoreManager.instance.ghostAccounts
|
|
|
|
init(app: XCUIApplication) {
|
|
self.app = app
|
|
}
|
|
|
|
func startOutgoingConference() {
|
|
|
|
}
|
|
}
|