1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-04-03 17:56:21 +03:00
occt/tests/bugs/fclasses/bug30536
vro 43c8661e5e 0030536: Foundation Classes - TCollection_ExtendedString::StartsWith() and EndsWith() have a mistake
Draw-commands StartsWith and EndsWith are renamed to QAStartsWith and QAEndsWith.
The test script bug30536 was corrected.
2019-03-18 19:46:00 +03:00

26 lines
478 B
Plaintext

puts "============"
puts "0030536: Foundation Classes - TCollection_ExtendedString::StartsWith() and EndsWith() have a mistake"
puts "============"
pload QAcommands
set ret1 [QAStartsWith hello help]
if { ${ret1} == "Yes" } {
puts "Error"
}
set ret2 [QAStartsWith hello he]
if { ${ret2} == "No" } {
puts "Error"
}
set ret3 [QAEndsWith hello ll]
if { ${ret3} == "Yes" } {
puts "Error"
}
set ret4 [QAEndsWith hello lo]
if { ${ret4} == "No" } {
puts "Error"
}