summaryrefslogtreecommitdiffstatshomepage
path: root/tests/main.cpp
blob: a3ba19293f963173a2900075fa2cfa0a14667d92 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
// license:BSD-3-Clause
// copyright-holders:Miodrag Milanovic

#include <stdio.h>
#include "gtest/gtest.h"

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