-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathTestContext.kt
48 lines (44 loc) · 1.65 KB
/
TestContext.kt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
/*
* Copyright 2024-2025 Kazimierz Pogoda / Xemantic
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* https://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.xemantic.kotlin.test
/**
* Returns the value of the specified environment variable.
*
* Note: on platforms which does not support access to system environment variables,
* they can be still set with gradle test configuration.
* See [README.md](https://github.com/xemantic/xemantic-kotlin-test) for details.
*
* @param name the name of the environment variable to read.
*/
public expect fun getEnv(name: String): String?
/**
* Returns true, if we are on the browser platform.
*
* This flag might be used to skip certain tests, e.g. file based tests
* on platforms which does not offer access to the filesystem.
*/
public expect val isBrowserPlatform: Boolean
/**
* The root dir of the gradle project.
*
* It is provided as an absolute file path. The specificity of emulators
* is taken into account.
*
* Note: the gradle root dir can be only resolved with additional gradle
* settings.
* See [README.md](https://github.com/xemantic/xemantic-kotlin-test) for details.
*/
public val gradleRootDir: String get() = getEnv("GRADLE_ROOT_DIR")!!