bell.test
上传用户:rrhhcc
上传日期:2015-12-11
资源大小:54129k
文件大小:2k
源码类别:

通讯编程

开发平台:

Visual C++

  1. # This file is a Tcl script to test out Tk's "bell" command.
  2. # It is organized in the standard fashion for Tcl tests.
  3. #
  4. # Copyright (c) 1994 The Regents of the University of California.
  5. # Copyright (c) 1998-2000 by Scriptics Corporation.
  6. # All rights reserved.
  7. #
  8. # RCS: @(#) $Id: bell.test,v 1.6 2002/07/14 05:48:45 dgp Exp $
  9. package require tcltest 2.1
  10. namespace import -force tcltest::configure
  11. namespace import -force tcltest::testsDirectory
  12. configure -testdir [file join [pwd] [file dirname [info script]]]
  13. configure -loadfile [file join [testsDirectory] constraints.tcl]
  14. tcltest::loadTestedCommands
  15. test bell-1.1 {bell command} {
  16.     list [catch {bell a} msg] $msg
  17. } {1 {bad option "a": must be -displayof or -nice}}
  18. test bell-1.2 {bell command} {
  19.     list [catch {bell a b} msg] $msg
  20. } {1 {bad option "a": must be -displayof or -nice}}
  21. test bell-1.3 {bell command} {
  22.     list [catch {bell -displayof gorp} msg] $msg
  23. } {1 {bad window path name "gorp"}}
  24. test bell-1.4 {bell command} {
  25.     list [catch {bell -nice -displayof} msg] $msg
  26. } {1 {wrong # args: should be "bell ?-displayof window? ?-nice?"}}
  27. test bell-1.5 {bell command} {
  28.     list [catch {bell -nice -nice -nice} msg] $msg
  29. } {0 {}}
  30. test bell-1.6 {bell command} {
  31.     list [catch {bell -displayof . -nice} msg] $msg
  32. } {0 {}}
  33. test bell-1.7 {bell command} {
  34.     list [catch {bell -nice -displayof . -nice} msg] $msg
  35. } {1 {wrong # args: should be "bell ?-displayof window? ?-nice?"}}
  36. test bell-1.8 {bell command} {
  37.     puts "Bell should ring now ..."
  38.     flush stdout
  39.     after 200
  40.     bell -displayof .
  41.     after 200
  42.     bell -nice
  43.     after 200
  44.     bell
  45. } {}
  46. # cleanup
  47. ::tcltest::cleanupTests
  48. return