X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;ds=sidebyside;f=automated-tests%2Fsrc%2Fdali-toolkit%2Futc-Dali-TextLabel.cpp;h=57355158966142b5f9fdfb0235dce29da9ba1471;hb=5e937a6322849b76d49d5b3f41cb5d91c94acd3e;hp=2d6b09239486263b8ecc0e0c109aece22b74284a;hpb=cb3691d010da3297946e5b92bcd1a43c38d414fe;p=platform%2Fcore%2Fuifw%2Fdali-toolkit.git diff --git a/automated-tests/src/dali-toolkit/utc-Dali-TextLabel.cpp b/automated-tests/src/dali-toolkit/utc-Dali-TextLabel.cpp index 2d6b092..5735515 100755 --- a/automated-tests/src/dali-toolkit/utc-Dali-TextLabel.cpp +++ b/automated-tests/src/dali-toolkit/utc-Dali-TextLabel.cpp @@ -1119,8 +1119,8 @@ int UtcDaliToolkitTextlabelEllipsis(void) Stage::GetCurrent().Add( label ); // Turn on all the effects - label.SetAnchorPoint( AnchorPoint::CENTER ); - label.SetParentOrigin( ParentOrigin::CENTER ); + label.SetProperty( Actor::Property::ANCHOR_POINT, AnchorPoint::CENTER ); + label.SetProperty( Actor::Property::PARENT_ORIGIN, ParentOrigin::CENTER ); label.SetSize( 360.0f, 10.f ); try @@ -1481,7 +1481,7 @@ int UtcDaliToolkitTextLabelBitmapFont(void) application.Render(); // The text has been rendered if the height of the text-label is the height of the line. - DALI_TEST_EQUALS( label.GetCurrentSize().height, 34.f, Math::MACHINE_EPSILON_1000, TEST_LOCATION ); + DALI_TEST_EQUALS( label.GetCurrentProperty< Vector3 >( Actor::Property::SIZE ).height, 34.f, Math::MACHINE_EPSILON_1000, TEST_LOCATION ); END_TEST; } @@ -1579,7 +1579,7 @@ int UtcDaliToolkitTextlabelMaxTextureSet(void) const int maxTextureSize = Dali::GetMaxTextureSize(); // Whether the rendered text is greater than maxTextureSize - DALI_TEST_CHECK( label.GetCurrentSize().height > maxTextureSize ); + DALI_TEST_CHECK( label.GetCurrentProperty< Vector3 >( Actor::Property::SIZE ).height > maxTextureSize ); // Check if the number of renderers is greater than 1. DALI_TEST_CHECK( label.GetRendererCount() > 1u );