File: testenviron.cpp

package info (click to toggle)
fcitx5 5.1.18-1
  • links: PTS, VCS
  • area: main
  • in suites:
  • size: 32,228 kB
  • sloc: cpp: 110,377; java: 3,125; javascript: 2,137; sh: 1,912; xml: 1,552; python: 1,312; ansic: 843; makefile: 11
file content (18 lines) | stat: -rw-r--r-- 430 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
/*
 * SPDX-FileCopyrightText: 2025~2025 CSSlayer <wengxt@gmail.com>
 *
 * SPDX-License-Identifier: LGPL-2.1-or-later
 *
 */

#include <optional>
#include "fcitx-utils/environ.h"
#include "fcitx-utils/log.h"

int main() {
    fcitx::setEnvironment("TEST_VAR", "TEST_VALUE");
    FCITX_ASSERT(fcitx::getEnvironment("TEST_VAR") == "TEST_VALUE");
    FCITX_ASSERT(fcitx::getEnvironment("__BAD_VAR") == std::nullopt);

    return 0;
}