]> git.localhorst.tv Git - blank.git/blobdiff - tst/integration/TestInstance.hpp
simple test for client
[blank.git] / tst / integration / TestInstance.hpp
index 354a66849f98e1ee008c837bb378821e511408f4..25fb08cae5a464e61ceb02369aabe50bbe677967 100644 (file)
@@ -6,6 +6,9 @@
 #include "io/LineBuffer.hpp"
 #include "net/tcp.hpp"
 
+#include <list>
+#include <string>
+
 
 namespace blank {
 namespace test {
@@ -81,6 +84,10 @@ private:
        LineBuffer<BUFSIZ> out_buf;
        LineBuffer<BUFSIZ> err_buf;
        LineBuffer<BUFSIZ> cmd_buf;
+       std::string name;
+       std::list<std::string> past_out;
+       std::list<std::string> past_err;
+       std::list<std::string> past_cmd;
 
 };