1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-04-04 18:06:22 +03:00
ski 607a96d42a 0023619: Integration of test grid "xml" into the new testing system
Removing XML Validator
Improvements of begin and TODO's in testing cases
small correction in begin file to provide normal behavior of tests if Java is not installed
2013-03-01 14:27:39 +04:00

38 lines
918 B
Plaintext

set aTestName "caf100-F1"
puts ${aTestName}
# Set a driver guid
set driverGuid "5b35ca00-5b78-11d1-8940-080009dc3333"
# Set a failure
set failureNb 13
# Set a function attribute
set aCLabel 0:1:1
Label D ${aCLabel}
SetFunction D ${aCLabel} ${driverGuid} ${failureNb}
# Save the document
set aFile ${WorkDirectory}/${aTestName}.${FileSuffix}
SaveToFile D $aFile
# Restore the document
Close D
Open ${aFile} DD
# Get a variable from the label
set IsDone [catch {GetFunction DD ${aCLabel} driverGuid2 failureNb2} aResult]
if { ${IsDone} != 0 } {
puts "Error : Get a value of TFunction_Function attribute from restoring document"
} else {
if { ${failureNb2} != ${failureNb} } {
puts "Error : Get a value of TFunction_Function attribute from restoring document"
}
if { ${driverGuid2} != ${driverGuid} } {
puts "Error : Get a value of TFunction_Function attribute from restoring document"
}
}