Reverting logging code in unittests

This commit is contained in:
Jonathan Thomas
2016-09-08 22:26:14 -05:00
parent a4340b8b0a
commit f00ea5c4e2
13 changed files with 0 additions and 79 deletions

View File

@@ -33,7 +33,6 @@ using namespace openshot;
TEST(Keyframe_GetPoint_With_No_Points)
{
cout << "Keyframe_GetPoint_With_No_Points" << endl;
// Create an empty keyframe
Keyframe k1;
@@ -42,7 +41,6 @@ TEST(Keyframe_GetPoint_With_No_Points)
TEST(Keyframe_GetPoint_With_1_Points)
{
cout << "Keyframe_GetPoint_With_1_Points" << endl;
// Create an empty keyframe
Keyframe k1;
k1.AddPoint(openshot::Point(2,3));
@@ -57,7 +55,6 @@ TEST(Keyframe_GetPoint_With_1_Points)
TEST(Keyframe_AddPoint_With_1_Point)
{
cout << "Keyframe_AddPoint_With_1_Point" << endl;
// Create an empty keyframe
Keyframe k1;
k1.Auto_Handle_Percentage = 0.4f;
@@ -70,7 +67,6 @@ TEST(Keyframe_AddPoint_With_1_Point)
TEST(Keyframe_AddPoint_With_2_Points)
{
cout << "Keyframe_AddPoint_With_2_Points" << endl;
// Create an empty keyframe
Keyframe k1;
k1.Auto_Handle_Percentage = 0.4f;
@@ -85,7 +81,6 @@ TEST(Keyframe_AddPoint_With_2_Points)
TEST(Keyframe_GetValue_For_Bezier_Curve_2_Points)
{
cout << "Keyframe_GetValue_For_Bezier_Curve_2_Points" << endl;
// Create a keyframe curve with 2 points
Keyframe kf;
kf.Auto_Handle_Percentage = 0.4f;
@@ -106,7 +101,6 @@ TEST(Keyframe_GetValue_For_Bezier_Curve_2_Points)
TEST(Keyframe_GetValue_For_Bezier_Curve_5_Points_40_Percent_Handle)
{
cout << "Keyframe_GetValue_For_Bezier_Curve_5_Points_40_Percent_Handle" << endl;
// Create a keyframe curve with 2 points
Keyframe kf;
kf.Auto_Handle_Percentage = 0.4f;
@@ -131,7 +125,6 @@ TEST(Keyframe_GetValue_For_Bezier_Curve_5_Points_40_Percent_Handle)
TEST(Keyframe_GetValue_For_Bezier_Curve_5_Points_25_Percent_Handle)
{
cout << "Keyframe_GetValue_For_Bezier_Curve_5_Points_25_Percent_Handle" << endl;
// Create a keyframe curve with 2 points
Keyframe kf;
kf.Auto_Handle_Percentage = 0.25f;
@@ -156,7 +149,6 @@ TEST(Keyframe_GetValue_For_Bezier_Curve_5_Points_25_Percent_Handle)
TEST(Keyframe_GetValue_For_Linear_Curve_3_Points)
{
cout << "Keyframe_GetValue_For_Linear_Curve_3_Points" << endl;
// Create a keyframe curve with 2 points
Keyframe kf;
kf.Auto_Handle_Percentage = 0.4f;
@@ -178,7 +170,6 @@ TEST(Keyframe_GetValue_For_Linear_Curve_3_Points)
TEST(Keyframe_GetValue_For_Constant_Curve_3_Points)
{
cout << "Keyframe_GetValue_For_Constant_Curve_3_Points" << endl;
// Create a keyframe curve with 2 points
Keyframe kf;
kf.Auto_Handle_Percentage = 0.4f;
@@ -201,7 +192,6 @@ TEST(Keyframe_GetValue_For_Constant_Curve_3_Points)
TEST(Keyframe_Check_Direction_and_Repeat_Fractions)
{
cout << "Keyframe_Check_Direction_and_Repeat_Fractions" << endl;
// Create a keyframe curve with 2 points
Keyframe kf;
kf.AddPoint(1, 500);
@@ -237,7 +227,6 @@ TEST(Keyframe_Check_Direction_and_Repeat_Fractions)
TEST(Keyframe_Get_Closest_Point)
{
cout << "Keyframe_Get_Closest_Point" << endl;
// Create a keyframe curve with 2 points
Keyframe kf;
kf.AddPoint(1, 0.0);
@@ -257,7 +246,6 @@ TEST(Keyframe_Get_Closest_Point)
TEST(Keyframe_Scale_Keyframe)
{
cout << "Keyframe_Scale_Keyframe" << endl;
// Create a keyframe curve with 2 points
Keyframe kf;
kf.Auto_Handle_Percentage = 0.4f;
@@ -301,7 +289,6 @@ TEST(Keyframe_Scale_Keyframe)
TEST(Keyframe_Flip_Keyframe)
{
cout << "Keyframe_Flip_Keyframe" << endl;
// Create a keyframe curve with 2 points
Keyframe kf;
kf.Auto_Handle_Percentage = 0.4f;
@@ -337,7 +324,6 @@ TEST(Keyframe_Flip_Keyframe)
TEST(Keyframe_Remove_Duplicate_Point)
{
cout << "Keyframe_Remove_Duplicate_Point" << endl;
// Create a keyframe curve with 2 points
Keyframe kf;
kf.AddPoint(1, 0.0);