Unit tests: Don't use OpenShot.h header

- To prevent slow compiles of unit tests, replace all of the
  '#include "OpenShot.h"' invocations with includes of the
  individual headers actually needed by each test file.

Revert "Unit tests: Don't use OpenShot.h header"

This reverts commit e5cc4f8bf91fc60697996023a86dc618637f6161.

Unit tests: Don't use OpenShot.h header

- To prevent slow compiles of unit tests, replace all of the
  '#include "OpenShot.h"' invocations with includes of the
  individual headers actually needed by each test file.
This commit is contained in:
FeRD (Frank Dana)
2020-12-26 06:03:30 -05:00
parent 5cfe52b9f7
commit ed77db81d2
15 changed files with 83 additions and 20 deletions

View File

@@ -31,7 +31,10 @@
#include "UnitTest++.h"
// Prevent name clashes with juce::UnitTest
#define DONT_SET_USING_JUCE_NAMESPACE 1
#include "OpenShot.h"
#include "KeyFrame.h"
#include "Coordinate.h"
#include "Fraction.h"
#include "Point.h"
using namespace std;
using namespace openshot;