blob: 609310a3617db065fde772d0c59e15dcd78652d5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
// -*- c++ -*-
// This is the uUnit main file.
// Copyright 2020 Bent Bisballe Nyeng (deva@aasimon.org)
// This file released under the CC0-1.0 license. See CC0-1.0 file for details.
#define uUNIT_MAIN
#include "uunit.h"
#include <fstream>
int main(int argc, char* argv[])
{
std::ofstream xmlfile;
xmlfile.open("result_" OUTPUT ".xml");
return uUnit::runTests(xmlfile);
}
|