summaryrefslogtreecommitdiffhomepage
path: root/test-elf.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'test-elf.cpp')
-rw-r--r--test-elf.cpp34
1 files changed, 34 insertions, 0 deletions
diff --git a/test-elf.cpp b/test-elf.cpp
new file mode 100644
index 0000000..d1aebd3
--- /dev/null
+++ b/test-elf.cpp
@@ -0,0 +1,34 @@
+#include "elf.h"
+#include "minicc.h"
+
+#include <boost/algorithm/string.hpp>
+
+#include "gmock/gmock.h"
+#include "gtest/gtest.h"
+
+#include <algorithm>
+#include <cctype>
+#include <deque>
+#include <map>
+#include <memory>
+#include <string>
+#include <utility>
+#include <vector>
+
+using namespace std::string_literals;
+
+class ElfTest: public ::testing::Test
+{
+protected:
+ ElfTest() {
+ //debug = true;
+ }
+ ~ElfTest() {
+ }
+};
+
+TEST_F(ElfTest, read) {
+}
+
+TEST_F(ElfTest, write) {
+}