EnvVars.stencil 558 B

123456789101112131415161718
  1. //
  2. // EnvVars.stencil.swift
  3. // NextcloudIntegrationTests
  4. //
  5. // Created by Milen on 31.05.23.
  6. // Copyright © 2023 Marino Faggiana. All rights reserved.
  7. //
  8. import Foundation
  9. /**
  10. This is generated from the .env-vars file in the root directory. If there is an environment variable here that is needed and not filled, please look into this file.
  11. */
  12. public struct EnvVars {
  13. static let testUser = "{{ argument.TEST_USER }}"
  14. static let testAppPassword = "{{ argument.TEST_APP_PASSWORD }}"
  15. static let testServerUrl = "{{ argument.TEST_SERVER_URL }}"
  16. }