#include <iostream>
#include <cmath>
#include "string_node.h"
#include "string_node_test.h"
using namespace std;
int main()
{
cout << boolalpha << endl;
cout << "testing string_node_test: true's should mean passed: " << endl;
cout << "---------------------------------------" << endl;
cout << "(string_node_test() == true): " << (string_node_test() == true) << endl;
cout << endl;
}