~mbranton/libopenshot/alpha-channel-fix

« back to all changes in this revision

Viewing changes to tests/Coordinate_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:
33
33
 
34
34
TEST(Coordinate_Default_Constructor)
35
35
{
 
36
        cout << "Coordinate_Default_Constructor" << endl;
36
37
        // Create an empty coordinate
37
38
        Coordinate c1;
38
39
 
42
43
 
43
44
TEST(Coordinate_X_Y_Constructor)
44
45
{
 
46
        cout << "Coordinate_X_Y_Constructor" << endl;
45
47
        // Create an empty coordinate
46
48
        Coordinate c1(2,8);
47
49