encfs/vendor/github.com/muflihun/easyloggingpp/test/os-utils-test.h
Valient Gough 5f0806c5cc Add "easylogging" from "https://github.com/muflihun/easyloggingpp@master"
git-vendor-name: easylogging
git-vendor-dir: vendor/github.com/muflihun/easyloggingpp
git-vendor-repository: https://github.com/muflihun/easyloggingpp
git-vendor-ref: master
2017-08-05 23:23:41 -07:00

19 lines
456 B
C++

#ifndef OS_UTILS_TEST_H
#define OS_UTILS_TEST_H
#include "test.h"
#if ELPP_OS_UNIX
TEST(OSUtilsTest, GetBashOutput) {
const char* bashCommand = "echo 'test'";
std::string bashResult = OS::getBashOutput(bashCommand);
EXPECT_EQ("test", bashResult);
}
#endif
TEST(OSUtilsTest, GetEnvironmentVariable) {
std::string variable = OS::getEnvironmentVariable("PATH", "pathResult");
EXPECT_FALSE(variable.empty());
}
#endif // OS_UTILS_TEST_H