aboutsummaryrefslogtreecommitdiff
path: root/gtests/src/gtest_core_getclient.cpp
blob: d0ace9e95374d143139b88b9bd1521588c4582d7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#include <gtest/gtest.h>
#include <cstdlib>
#include <string>

#include "gtest_helper.h"

class CoreGetClientTests : public ::testing::Test {
    public:
    const char* testBinaryName = "core_getclient";
    void SetUp() override { chdir(binary_path); }
    void TearDown() override { chdir("/"); }
};

TEST_F(CoreGetClientTests, TestGetClient) {
    runTest(testBinaryName);
}