You've already forked libopenshot
mirror of
https://github.com/OpenShot/libopenshot.git
synced 2026-03-02 08:53:52 -08:00
20 lines
351 B
C++
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;
|
|
}
|