mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-03 17:56:21 +03:00
Added short-cuts methods in Message_Messenger for sending message with specified gravity, and stream buffer class for using stream-like interface for that. Similar short-cuts to DefaultMessenger() are added in Message package. ViewerTest has been updated to send messages to Message::DefaultMessenger() instead of direct output to std::cout/std::cerr. Off-topic: spelling error (duplicate "and") is corrected in two places Added test bugs fclasses bug31189
22 lines
553 B
Plaintext
22 lines
553 B
Plaintext
puts "# ============"
|
|
puts "# 0031189: Draw Harness, ViewerTest - send messages to Message::DefaultMessenger()"
|
|
puts "# ============"
|
|
puts ""
|
|
puts "# Test consistency of messages output using stream buffer interface"
|
|
|
|
pload QAcommands
|
|
set out [OCC31189]
|
|
|
|
set expected {
|
|
{Direct message 1}
|
|
{Sender message 1: start ...... end}
|
|
{Direct message 2}
|
|
{}
|
|
{Sender message 2}
|
|
}
|
|
|
|
if { [string compare [string trim $out] [join $expected "\n"]] } {
|
|
puts "Error: output (see above) does not match expected one:"
|
|
puts "[join $expected "\n"]"
|
|
puts ""
|
|
} |