X-Git-Url: http://review.tizen.org/git/?p=platform%2Fcore%2Fuifw%2Fdali-toolkit.git;a=blobdiff_plain;f=automated-tests%2Fsrc%2Fdali-toolkit%2Futc-Dali-RadioButton.cpp;h=a56ad136d5d53840b2df5fea42f62b86ecbd83cf;hp=521d6cab182b57f1f694f3c1e9e8e67a8b39d904;hb=06e563f8a982e25a0efe2d91c794657dc8e4bc4a;hpb=d69d0761421e562cd4780c07499cae61963559bd diff --git a/automated-tests/src/dali-toolkit/utc-Dali-RadioButton.cpp b/automated-tests/src/dali-toolkit/utc-Dali-RadioButton.cpp index 521d6ca..a56ad13 100644 --- a/automated-tests/src/dali-toolkit/utc-Dali-RadioButton.cpp +++ b/automated-tests/src/dali-toolkit/utc-Dali-RadioButton.cpp @@ -140,14 +140,14 @@ int UtcDaliRadioButtonLabelActor(void) { ToolkitTestApplication application; - TextLabel actor1 = TextLabel::New( "test actor 1" ); + std::string labelText = "test actor 1"; - RadioButton radioButton = RadioButton::New( actor1 ); - DALI_TEST_CHECK( actor1 == radioButton.GetLabel() ); + RadioButton radioButton = RadioButton::New( labelText ); + DALI_TEST_EQUALS( radioButton.GetLabelText(), labelText, TEST_LOCATION ); - TextLabel actor2 = TextLabel::New( "test actor 2" ); - radioButton.SetLabel( actor2 ); - DALI_TEST_CHECK( actor2 == radioButton.GetLabel() ); + std::string labelText2 = "test actor 2"; + radioButton.SetLabelText( labelText2 ); + DALI_TEST_EQUALS( radioButton.GetLabelText(), labelText2, TEST_LOCATION ); END_TEST; }