aboutsummaryrefslogtreecommitdiffstats
path: root/tests/dummy/main.cpp
blob: b8d22138822e21ae3ae4e5af93d6832ddac386ad (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#include "gtest/gtest.h"

#include <vector>

int main(int argc, char **argv) {
  ::testing::InitGoogleTest(&argc, argv);
  return RUN_ALL_TESTS();
}

TEST(example, sum_zero) {
  auto result = 0;
  ASSERT_EQ(result, 0);
}

TEST(example, sum_five) {
  auto result = 15;
  ASSERT_EQ(result, 15);
}