Commit 6f4608ce authored by Jesse Beder's avatar Jesse Beder
Browse files

Added missing includes (iostream) for the tests

parent 5abfbf5a
#include "tests.h" #include "tests.h"
#include "yaml-cpp/yaml.h" #include "yaml-cpp/yaml.h"
#include <iostream>
namespace Test namespace Test
{ {
......
#include "nodetests.h" #include "nodetests.h"
#include "yaml-cpp/yaml.h" #include "yaml-cpp/yaml.h"
#include <iostream>
namespace { namespace {
struct TEST { struct TEST {
......
#include "spectests.h" #include "spectests.h"
#include "specexamples.h" #include "specexamples.h"
#include "yaml-cpp/yaml.h" #include "yaml-cpp/yaml.h"
#include <iostream>
#define YAML_ASSERT(cond) do { if(!(cond)) return " Assert failed: " #cond; } while(false) #define YAML_ASSERT(cond) do { if(!(cond)) return " Assert failed: " #cond; } while(false)
......
...@@ -2,6 +2,7 @@ ...@@ -2,6 +2,7 @@
#include "yaml-cpp/yaml.h" #include "yaml-cpp/yaml.h"
#include <sstream> #include <sstream>
#include <algorithm> #include <algorithm>
#include <iostream>
namespace Test namespace Test
{ {
......
#include "spectests.h" #include "spectests.h"
#include "yaml-cpp/yaml.h" #include "yaml-cpp/yaml.h"
#include <iostream>
namespace Test namespace Test
{ {
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment