1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-04-03 17:56:21 +03:00
occt/tests/bugs/caf/bug23912
vro bbd048069d 0023912: TDataStd_ExtStringArray::Value() returns a copy of TCollection_ExtendedString, but it might return a reference.
Since now TDataStd_ExtStringArray::Value() returns a constant reference to the string value.
Also, a draw-command GetExtStringArray is modified to manipulate with the string by a constant reference.
Added test case bugs/caf/bug23912
2013-05-16 11:07:43 +04:00

25 lines
656 B
Plaintext

puts "============"
puts "OCC23912"
puts "============"
puts ""
###################################################################################################################
# TDataStd_ExtStringArray::Value() returns a copy of TCollection_ExtededString, but it might return a reference
###################################################################################################################
NewDocument D
SetExtStringArray D 0:1 0 1 5 "A" "B" "C" "D" "E"
set info [GetExtStringArray D 0:1]
if { [regexp "A B C D E" $info] != 1 } {
puts "Error : function returns wrong value"
} else {
puts "OK : function works properly"
}