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=aa2ca31f83af109288476eb0ffc07212c739f18c;hp=6f04d64ff77787734ab88fe54f0eb8185ff017cf;hb=00c549366e07db37a58ae6940abbae462d1061ea;hpb=aaf4d0fc389f5dea68d99ce68413c18a472f7e4e diff --git a/automated-tests/src/dali-toolkit/utc-Dali-TextLabel.cpp b/automated-tests/src/dali-toolkit/utc-Dali-TextLabel.cpp index 6f04d64..aa2ca31 100644 --- a/automated-tests/src/dali-toolkit/utc-Dali-TextLabel.cpp +++ b/automated-tests/src/dali-toolkit/utc-Dali-TextLabel.cpp @@ -450,6 +450,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; }