Files
libopenshot/tests/tests.cpp
2011-10-11 08:44:27 -05:00

20 lines
351 B
C++

#include <iostream>
#include "UnitTest++.h"
using namespace std;
using namespace UnitTest;
int main()
{
cout << "----------------------------" << endl;
cout << " RUNNING ALL TESTS" << endl;
cout << "----------------------------" << endl;
// Run all unit tests
RunAllTests();
cout << "----------------------------" << endl;
return 0;
}