mirror of
https://github.com/jbeder/yaml-cpp.git
synced 2025-09-08 12:21:17 +00:00
19 lines
277 B
C++
19 lines
277 B
C++
#include <fstream>
|
|
#include <iostream>
|
|
#include <sstream>
|
|
#include <vector>
|
|
|
|
#include "nodetests.h"
|
|
#include "tests.h"
|
|
|
|
namespace Test {
|
|
void RunAll() {
|
|
bool passed = true;
|
|
if (!RunNodeTests())
|
|
passed = false;
|
|
|
|
if (passed)
|
|
std::cout << "All tests passed!\n";
|
|
}
|
|
}
|