diff options
author | bloodstalker <thabogre@gmail.com> | 2017-06-25 21:19:19 +0000 |
---|---|---|
committer | bloodstalker <thabogre@gmail.com> | 2017-06-25 21:19:19 +0000 |
commit | a300398fec606daeb1f8d98da16254d7c224c170 (patch) | |
tree | 494915020bee9aecfecc801643aa5f727f87404e /test | |
parent | added two more commands (diff) | |
download | mutator-a300398fec606daeb1f8d98da16254d7c224c170.tar.gz mutator-a300398fec606daeb1f8d98da16254d7c224c170.zip |
updated
Diffstat (limited to '')
-rw-r--r-- | test/bruisertest/test.cpp | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/test/bruisertest/test.cpp b/test/bruisertest/test.cpp index 40bfb47..f3e32d1 100644 --- a/test/bruisertest/test.cpp +++ b/test/bruisertest/test.cpp @@ -1,4 +1,7 @@ +#include <fstream> +#include <iostream> + namespace devi { class LOCO @@ -17,5 +20,10 @@ namespace devi int main(int argc, const char **argv) { + std::ofstream myfile; + myfile.open("./touch"); + myfile << "line one.\n"; + myfile.close(); + return 0; } |