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

通讯编程

开发平台:

Visual C++

  1. # This file is a Tcl script to test the procedures in the file
  2. # tkCmds.c.  It is organized in the standard fashion for Tcl tests.
  3. #
  4. # Copyright (c) 1996 Sun Microsystems, Inc.
  5. # Copyright (c) 1998-1999 by Scriptics Corporation.
  6. # All rights reserved.
  7. #
  8. # RCS: @(#) $Id: cmds.test,v 1.4 2002/07/14 05:48:46 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. update
  16. test cmds-1.1 {tkwait visibility, argument errors} {
  17.     list [catch {tkwait visibility} msg] $msg
  18. } {1 {wrong # args: should be "tkwait variable|visibility|window name"}}
  19. test cmds-1.2 {tkwait visibility, argument errors} {
  20.     list [catch {tkwait visibility foo bar} msg] $msg
  21. } {1 {wrong # args: should be "tkwait variable|visibility|window name"}}
  22. test cmds-1.3 {tkwait visibility, argument errors} {
  23.     list [catch {tkwait visibility bad_window} msg] $msg
  24. } {1 {bad window path name "bad_window"}}
  25. test cmds-1.4 {tkwait visibility, waiting for window to be mapped} {
  26.     button .b -text "Test"
  27.     set x init
  28.     after 100 {set x delay; place .b -x 0 -y 0}
  29.     tkwait visibility .b
  30.     destroy .b
  31.     set x
  32. } {delay}
  33. test cmds-1.5 {tkwait visibility, window gets deleted} {
  34.     frame .f
  35.     button .f.b -text "Test"
  36.     pack .f.b
  37.     set x init
  38.     after 100 {set x deleted; destroy .f}
  39.     list [catch {tkwait visibility .f.b} msg] $msg $x
  40. } {1 {window ".f.b" was deleted before its visibility changed} deleted}
  41. # cleanup
  42. ::tcltest::cleanupTests
  43. return