aboutsummaryrefslogtreecommitdiffstats
path: root/tests/ice40/main.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'tests/ice40/main.cpp')
-rw-r--r--tests/ice40/main.cpp18
1 files changed, 0 insertions, 18 deletions
diff --git a/tests/ice40/main.cpp b/tests/ice40/main.cpp
deleted file mode 100644
index b8d22138..00000000
--- a/tests/ice40/main.cpp
+++ /dev/null
@@ -1,18 +0,0 @@
-#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);
-}