~mbranton/libopenshot/alpha-channel-fix

« back to all changes in this revision

Viewing changes to tests/Clip_Tests.cpp

  • Committer: Jonathan Thomas
  • Date: 2016-09-08 07:33:24 UTC
  • Revision ID: jonathan@openshot.org-20160908073324-65qzdcd014mgs3ug
Adding additional logging to unittests, to help find an issue on certain systems

Show diffs side-by-side

added added

removed removed

Lines of Context:
34
34
 
35
35
TEST(Clip_Default_Constructor)
36
36
{
 
37
        cout << "Clip_Default_Constructor" << endl;
37
38
        // Create a empty clip
38
39
        Clip c1;
39
40
 
49
50
 
50
51
TEST(Clip_Constructor)
51
52
{
 
53
        cout << "Clip_Constructor" << endl;
52
54
        // Create a empty clip
53
55
        stringstream path;
54
56
        path << TEST_MEDIA_PATH << "piano.wav";
67
69
 
68
70
TEST(Clip_Basic_Gettings_and_Setters)
69
71
{
 
72
        cout << "Clip_Basic_Gettings_and_Setters" << endl;
70
73
        // Create a empty clip
71
74
        Clip c1;
72
75
 
94
97
 
95
98
TEST(Clip_Properties)
96
99
{
 
100
        cout << "Clip_Properties" << endl;
97
101
        // Create a empty clip
98
102
        Clip c1;
99
103
 
204
208
 
205
209
TEST(Clip_Effects)
206
210
{
 
211
        cout << "Clip_Effects" << endl;
207
212
        // Load clip with video
208
213
        stringstream path;
209
214
        path << TEST_MEDIA_PATH << "sintel_trailer-720p.mp4";