Skip to content
Snippets Groups Projects

Resolve "Unit tests unter Windows"

Merged Joscha Schmiedt requested to merge f-77-unit-tests-unter-windows into dev
1 file
+ 3
2
Compare changes
  • Side-by-side
  • Inline
+ 3
2
@@ -44,8 +44,9 @@ protected:
@@ -44,8 +44,9 @@ protected:
};
};
TEST_F(test_clinkahead, test_get_env_fallback) {
TEST_F(test_clinkahead, test_get_env_fallback) {
const char *const some_var = linkahead_utility_get_env_fallback("SOME_ENV_VAR", "fall-back");
constexpr auto fall_back = "fall-back";
EXPECT_EQ("fall-back", some_var);
const char *const some_var = linkahead_utility_get_env_fallback("SOME_ENV_VAR", fall_back);
 
EXPECT_EQ(fall_back, some_var);
}
}
TEST_F(test_clinkahead, test_other_client_error) {
TEST_F(test_clinkahead, test_other_client_error) {
Loading