Files
yaml-cpp/test/tests.cpp
T

19 lines
283 B
C++
Raw Normal View History

2014-03-22 22:46:04 -05:00
#include <fstream>
#include <iostream>
#include <sstream>
#include <vector>
2009-09-07 22:17:02 +00:00
#include "emittertests.h"
2014-03-22 22:46:04 -05:00
#include "tests.h"
2008-09-03 22:20:39 +00:00
2014-03-22 12:49:16 -05:00
namespace Test {
void RunAll() {
bool passed = true;
if (!RunEmitterTests())
passed = false;
2008-09-03 22:20:39 +00:00
2014-03-22 12:49:16 -05:00
if (passed)
std::cout << "All tests passed!\n";
}
2008-09-03 22:20:39 +00:00
}