Files
libopenshot/tests/tests.cpp

20 lines
351 B
C++
Raw Normal View History

2011-10-11 08:44:27 -05:00
#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;
}