X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=automated-tests%2Fsrc%2Fdali-toolkit%2Futc-Dali-Button.cpp;h=f290cb2deec18ac99b6b26d9820db36e6115ba75;hb=c727344220d82d216d98f511ee0e9dca33b866a8;hp=3e7f4cf83a48cd998791abdd5af39d91c467d38a;hpb=f60d2ee843df1c81ea988c4a986e9168c905fcc9;p=platform%2Fcore%2Fuifw%2Fdali-toolkit.git diff --git a/automated-tests/src/dali-toolkit/utc-Dali-Button.cpp b/automated-tests/src/dali-toolkit/utc-Dali-Button.cpp index 3e7f4cf..f290cb2 100644 --- a/automated-tests/src/dali-toolkit/utc-Dali-Button.cpp +++ b/automated-tests/src/dali-toolkit/utc-Dali-Button.cpp @@ -310,9 +310,9 @@ int UtcDaliButtonSetLabelStringP(void) Button button = PushButton::New(); - button.SetLabel( "Button Label" ); + button.SetLabelText( "Button Label" ); - DALI_TEST_CHECK( button.GetLabel() ); + DALI_TEST_EQUALS( button.GetLabelText(), "Button Label", TEST_LOCATION ); END_TEST; } @@ -322,19 +322,16 @@ int UtcDaliButtonSetLabelActorP(void) Button button = PushButton::New(); - TextLabel textLabel = TextLabel::New( "Button Label" ); - button.SetLabel( textLabel ); + button.SetLabelText( "Button Label" ); - DALI_TEST_CHECK( button.GetLabel() ); + DALI_TEST_EQUALS( button.GetLabelText(), "Button Label", TEST_LOCATION ); END_TEST; } -int UtcDaliButtonSetButtonImage(void) +int UtcDaliButtonSetUnselectedImageP(void) { ToolkitTestApplication application; - tet_infoline(" UtcDaliButtonSetButtonImage"); - - Image image = CreateSolidColorImage( Color::RED, 10, 10 ); + tet_infoline(" UtcDaliButtonSetUnselectedImageP"); PushButton pushButton = PushButton::New(); Stage::GetCurrent().Add( pushButton ); @@ -343,7 +340,7 @@ int UtcDaliButtonSetButtonImage(void) application.Render(); pushButton.SetSize( Vector2( 20.0f, 20.0f ) ); - pushButton.SetButtonImage( image ); + pushButton.SetUnselectedImage( "Image.jpg" ); application.SendNotification(); application.Render(); @@ -361,8 +358,6 @@ int UtcDaliButtonSetSelectedImageP(void) ToolkitTestApplication application; tet_infoline(" UtcDaliButtonSetButtonImage"); - Image image = CreateSolidColorImage( Color::RED, 10, 10 ); - PushButton pushButton = PushButton::New(); Stage::GetCurrent().Add( pushButton ); @@ -370,7 +365,7 @@ int UtcDaliButtonSetSelectedImageP(void) application.Render(); pushButton.SetSize( Vector2( 20.0f, 20.0f ) ); - pushButton.SetSelectedImage( image ); + pushButton.SetSelectedImage( "Image.jpg" ); application.SendNotification(); application.Render(); @@ -599,8 +594,10 @@ int UtcDaliButtonSetProperty(void) pushButton.SetProperty(pushButton.GetPropertyIndex("disabled"), false); DALI_TEST_CHECK( false == pushButton.IsDisabled() ); + pushButton.SetProperty(pushButton.GetPropertyIndex("disabled"), true); DALI_TEST_CHECK( true == pushButton.IsDisabled() ); + END_TEST; } @@ -609,26 +606,17 @@ int UtcDaliButtonSize(void) ToolkitTestApplication application; tet_infoline(" UtcDaliButtonSize"); - ImageActor image01 = ImageActor::New(CreateBufferImage()); - image01.SetSize( 100, 50 ); - - PushButton pushButton; - - Vector3 size; - - // Test1 Size is set through Actor API - // First an image is set, then SetSize is called. - pushButton = PushButton::New(); + PushButton pushButton = PushButton::New(); Stage::GetCurrent().Add( pushButton ); - pushButton.SetBackgroundImage( image01 ); + pushButton.SetBackgroundImage( "Image.jpg" ); pushButton.SetSize( 10.f, 10.f ); application.SendNotification(); application.Render(); - size = pushButton.GetCurrentSize(); + Vector3 size = pushButton.GetCurrentSize(); DALI_TEST_EQUALS( size.width, 10.f, TEST_LOCATION ); DALI_TEST_EQUALS( size.height, 10.f, TEST_LOCATION );