blob: 9705c0838bf61d0d8b8290675cf3ec0cc380fa34 [file] [log] [blame]
// Copyright 2021 The Fuchsia Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include <cstdlib>
#include <gtest/gtest.h>
TEST(TestEnviron, TestEnviron) {
EXPECT_STREQ(std::getenv("HELLO"), "WORLD");
EXPECT_STREQ(std::getenv("FOO"), "BAR");
}