nextpnr/tests/ice40/main.cpp
2018-06-11 21:30:22 +02:00

19 lines
295 B
C++

#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);
}