hwtests/source/tests/test.cpp
archshift 3f083e0e0e Make Test a template function for easy comparison with values.
Also allows further logging and output in the future.
2014-12-10 20:15:30 -08:00

11 lines
222 B
C++

#include "test.h"
#include <3ds.h>
#include "output.h"
void PrintSuccess(std::string group, std::string name, bool val)
{
print(GFX_TOP, "%s: %s - %s\n", group.c_str(), name.c_str(), val ? "SUCCESS" : "FAILURE");
}