mirror of
https://github.com/vgough/encfs.git
synced 2024-11-25 09:23:13 +01:00
59d74aea1f
git-subtree-dir: vendor/github.com/muflihun/easyloggingpp git-subtree-split: 850ea2a9f151ed648a989dda1cf44e503e45831f
19 lines
456 B
C++
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
|