X-Git-Url: http://review.tizen.org/git/?p=platform%2Fcore%2Fuifw%2Fdali-toolkit.git;a=blobdiff_plain;f=automated-tests%2Fdali-internal-test-suite%2Ftext-view%2Futc-Dali-TextView-Processor.cpp;h=90fed94cffafc0d2b0d2e9590ffc22bf8af4ecb4;hp=8f9a85eab9490e32bd13f29fbc9a6165f2af7f4d;hb=e2e777d22421d671e2bc7bf81148f7b89a44e807;hpb=cf2dd988cd7f7154208f1ffe9257f81df698cee6 diff --git a/automated-tests/dali-internal-test-suite/text-view/utc-Dali-TextView-Processor.cpp b/automated-tests/dali-internal-test-suite/text-view/utc-Dali-TextView-Processor.cpp index 8f9a85e..90fed94 100644 --- a/automated-tests/dali-internal-test-suite/text-view/utc-Dali-TextView-Processor.cpp +++ b/automated-tests/dali-internal-test-suite/text-view/utc-Dali-TextView-Processor.cpp @@ -48,7 +48,7 @@ bool TestBeginsRightToLeftCharacter( const std::string& description, const std:: { // Creates a styled text with the markup or plain string. MarkupProcessor::StyledTextArray styledText; - MarkupProcessor::GetStyledTextArray( input, styledText ); + MarkupProcessor::GetStyledTextArray( input, styledText, true ); const bool ret = ( result == TextProcessor::BeginsRightToLeftCharacter( styledText ) ); @@ -74,7 +74,7 @@ bool TestContainsRightToLeftCharacter( const std::string& description, const std { // Creates a styled text with the markup or plain string. MarkupProcessor::StyledTextArray styledText; - MarkupProcessor::GetStyledTextArray( input, styledText ); + MarkupProcessor::GetStyledTextArray( input, styledText, true ); const bool ret = ( result == TextProcessor::ContainsRightToLeftCharacter( styledText ) ); @@ -102,7 +102,7 @@ bool TestFindNearestWord( const std::string& description, const std::string& inp { // Creates a styled text with the markup or plain string. MarkupProcessor::StyledTextArray styledText; - MarkupProcessor::GetStyledTextArray( input, styledText ); + MarkupProcessor::GetStyledTextArray( input, styledText, true ); std::size_t start; std::size_t end; @@ -132,7 +132,7 @@ bool TestSplitInLines( const SplitInLinesTest& test, const char* location ) { // Creates a styled text with the markup or plain string. MarkupProcessor::StyledTextArray styledText; - MarkupProcessor::GetStyledTextArray( test.inputText, styledText ); + MarkupProcessor::GetStyledTextArray( test.inputText, styledText, true ); std::vector lines; @@ -163,7 +163,7 @@ bool TestSplitInWords( const SplitInWordsTest& test, const char* location ) { // Creates a styled text with the markup or plain string. MarkupProcessor::StyledTextArray styledText; - MarkupProcessor::GetStyledTextArray( test.inputText, styledText ); + MarkupProcessor::GetStyledTextArray( test.inputText, styledText, true ); std::vector words;