aboutsummaryrefslogtreecommitdiff
path: root/gtests/src/gtest_kms_throughput.cpp
blob: 4885221c31e1902841f99e8d2a6f836eab44b21b (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 KMSThroughputTests : public ::testing::Test {
    public:
    const char* testBinaryName = "kms_throughput";
    void SetUp() override { chdir(binary_path); }
    void TearDown() override { chdir("/"); }
};

TEST_F(KMSThroughputTests, TestKMSThroughput) {
    runTest(testBinaryName);
}