nextpnr/tests/dummy/main.cc

9 lines
149 B
C++
Raw Normal View History

2018-06-11 21:04:30 +02:00
#include "gtest/gtest.h"
#include <vector>
int main(int argc, char **argv) {
::testing::InitGoogleTest(&argc, argv);
return RUN_ALL_TESTS();
}