summaryrefslogtreecommitdiff
path: root/src/tests/PowderInteractionMachine.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/tests/PowderInteractionMachine.cpp')
-rw-r--r--src/tests/PowderInteractionMachine.cpp21
1 files changed, 0 insertions, 21 deletions
diff --git a/src/tests/PowderInteractionMachine.cpp b/src/tests/PowderInteractionMachine.cpp
deleted file mode 100644
index 329cfd7..0000000
--- a/src/tests/PowderInteractionMachine.cpp
+++ /dev/null
@@ -1,21 +0,0 @@
-#ifdef TEST
-
-#include <iostream>
-#include <fstream>
-#include <sstream>
-#include "pim/Parser.h"
-
-int main(int argc, char * argv[])
-{
- std::ifstream file("test.p");
-
- std::stringstream buffer;
-
- buffer << file.rdbuf();
- file.close();
-
- pim::compiler::Parser * parser = new pim::compiler::Parser(buffer);
-
- parser->Compile();
-}
-#endif