summaryrefslogtreecommitdiffhomepage
path: root/test-dfa.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'test-dfa.cpp')
-rw-r--r--test-dfa.cpp17
1 files changed, 17 insertions, 0 deletions
diff --git a/test-dfa.cpp b/test-dfa.cpp
new file mode 100644
index 0000000..07166f0
--- /dev/null
+++ b/test-dfa.cpp
@@ -0,0 +1,17 @@
+#include "debug.h"
+#include "dfa.h"
+
+#include "gmock/gmock.h"
+#include "gtest/gtest.h"
+
+class DFATest: public ::testing::Test {
+protected:
+ DFATest(){
+ debug = false;
+ }
+ ~DFATest() override {}
+};
+
+TEST_F(DFATest, BNF) {
+}
+