TestConstants.swift 373 B

1234567891011121314
  1. //
  2. // SPDX-FileCopyrightText: 2023 Nextcloud GmbH and Nextcloud contributors
  3. // SPDX-License-Identifier: GPL-3.0-or-later
  4. //
  5. import Foundation
  6. public class TestConstants {
  7. static let timeoutLong: Double = 60
  8. static let timeoutShort: Double = 15
  9. static let server = "http://localhost:8080"
  10. static let username = "admin"
  11. static let password = "admin"
  12. }