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

通讯编程

开发平台:

Visual C++

  1. # This file is a Tcl script to test out the procedures in the file
  2. # tkUtil.c.  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) 1994 Sun Microsystems, Inc.
  6. # Copyright (c) 1998-1999 by Scriptics Corporation.
  7. # All rights reserved.
  8. #
  9. # RCS: @(#) $Id: util.test,v 1.5 2002/07/13 20:28:36 dgp Exp $
  10. package require tcltest 2.1
  11. namespace import -force tcltest::configure
  12. namespace import -force tcltest::testsDirectory
  13. configure -testdir [file join [pwd] [file dirname [info script]]]
  14. configure -loadfile [file join [testsDirectory] constraints.tcl]
  15. tcltest::loadTestedCommands
  16. listbox .l -width 20 -height 5 -relief sunken -bd 2
  17. pack .l
  18. .l insert 0 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
  19. update
  20. test util-1.1 {Tk_GetScrollInfo procedure} {
  21.     list [catch {.l yview moveto a b} msg] $msg
  22. } {1 {wrong # args: should be ".l yview moveto fraction"}}
  23. test util-1.2 {Tk_GetScrollInfo procedure} {
  24.     list [catch {.l yview moveto xyz} msg] $msg
  25. } {1 {expected floating-point number but got "xyz"}}
  26. test util-1.3 {Tk_GetScrollInfo procedure} {
  27.     .l yview 0
  28.     .l yview moveto .5
  29.     .l yview
  30. } {0.5 0.75}
  31. test util-1.4 {Tk_GetScrollInfo procedure} {
  32.     list [catch {.l yview scroll a} msg] $msg
  33. } {1 {wrong # args: should be ".l yview scroll number units|pages"}}
  34. test util-1.5 {Tk_GetScrollInfo procedure} {
  35.     list [catch {.l yview scroll a b c} msg] $msg
  36. } {1 {wrong # args: should be ".l yview scroll number units|pages"}}
  37. test util-1.6 {Tk_GetScrollInfo procedure} {
  38.     list [catch {.l yview scroll xyz units} msg] $msg
  39. } {1 {expected integer but got "xyz"}}
  40. test util-1.7 {Tk_GetScrollInfo procedure} {
  41.     .l yview 0
  42.     .l yview scroll 2 pages
  43.     .l nearest 0
  44. } {6}
  45. test util-1.8 {Tk_GetScrollInfo procedure} {
  46.     .l yview 15
  47.     .l yview scroll -2 pages
  48.     .l nearest 0
  49. } {9}
  50. test util-1.9 {Tk_GetScrollInfo procedure} {
  51.     .l yview 0
  52.     .l yview scroll 2 units
  53.     .l nearest 0
  54. } {2}
  55. test util-1.10 {Tk_GetScrollInfo procedure} {
  56.     .l yview 15
  57.     .l yview scroll -2 units
  58.     .l nearest 0
  59. } {13}
  60. test util-1.11 {Tk_GetScrollInfo procedure} {
  61.     list [catch {.l yview scroll 3 zips} msg] $msg
  62. } {1 {bad argument "zips": must be units or pages}}
  63. test util-1.12 {Tk_GetScrollInfo procedure} {
  64.     list [catch {.l yview dropdead 3 times} msg] $msg
  65. } {1 {unknown option "dropdead": must be moveto or scroll}}
  66. # cleanup
  67. ::tcltest::cleanupTests
  68. return