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-TextLabel.cpp;h=a28d41f69989bc7315e47de4f0a4250f95000443;hp=5f9a7104c412d7862106e3e9d6b5119e2177ed81;hb=23b11d5e9e206a703616aeef9bea3f75647a54db;hpb=84b2db2345e0b3d0dbc19c45f5eb35d9a5492137 diff --git a/automated-tests/src/dali-toolkit/utc-Dali-TextLabel.cpp b/automated-tests/src/dali-toolkit/utc-Dali-TextLabel.cpp index 5f9a710..a28d41f 100644 --- a/automated-tests/src/dali-toolkit/utc-Dali-TextLabel.cpp +++ b/automated-tests/src/dali-toolkit/utc-Dali-TextLabel.cpp @@ -316,6 +316,17 @@ int UtcDaliToolkitTextlabelAtlasRenderP(void) tet_result(TET_FAIL); } + try + { + // Render some text with the shared atlas backend + label.SetProperty( TextLabel::Property::RENDERING_BACKEND, Text::RENDERING_VECTOR_BASED ); + application.SendNotification(); + application.Render(); + } + catch( ... ) + { + tet_result(TET_FAIL); + } END_TEST; }