#include "base/environment.h"
#include <memory>
#include "build/build_config.h"
#include "testing/gtest/include/gtest/gtest.h"
#include "testing/platform_test.h"
EnvironmentTest;
namespace base {
namespace {
#if BUILDFLAG(IS_FUCHSIA)
constexpr char kValidEnvironmentVariable[] = "PWD";
#else
constexpr char kValidEnvironmentVariable[] = …;
#endif
}
TEST_F(EnvironmentTest, GetVar) { … }
TEST_F(EnvironmentTest, GetVarReverse) { … }
TEST_F(EnvironmentTest, HasVar) { … }
TEST_F(EnvironmentTest, SetVar) { … }
TEST_F(EnvironmentTest, UnSetVar) { … }
}