AutolabJS/AutolabJS

View on GitHub
docs/examples/unit_tests/Driver.cpp

Summary

Maintainability
Test Coverage
#include <iostream>
#include "Test.hpp"

using namespace std;

int main()
{
    try {
    cout << test() << endl;
    }
    catch(...) {
    cout << 125 << endl;
    }
    return 0;
}