Sign in
fuchsia
/
third_party
/
github.com
/
Kitware
/
CMake
/
refs/heads/main
/
.
/
Tests
/
GoogleTest
/
Test
/
main5.cxx
blob: 28fa374674c890240e91756bde22943b3eb113cb [
file
] [
log
] [
blame
] [
edit
]
#include
<cstdlib>
#include
<gtest/gtest.h>
TEST
(
GoogleTest
,
Add
)
{
EXPECT_STREQ
(
std
::
getenv
(
"VALX"
),
"1"
);
EXPECT_STREQ
(
std
::
getenv
(
"VALY"
),
"2"
);
}