📄 spintime.test
字号:
# This file is a Tcl script to test out [incr Widgets] Spintime class.# It is organized in the standard fashion for Tcl tests with the following# notation for test case labels:## 1.x - Construction/Destruction tests# 2.x - Configuration option tests# 3.x - Method tests## Copyright (c) 1995 DSC Technologies Corporation## See the file "license.terms" for information on usage and redistribution# of this file, and for a DISCLAIMER OF ALL WARRANTIES.## @(#) $Id: spintime.test 144 2003-02-05 10:56:26Z mdejong $package require tcltestnamespace import -force ::tcltest::*package require Iwidgets 3.0if {[string compare test [info procs test]] == 1} { source defs}wm geometry . {}raise .set c 1set o 1set m 1## Initial construction test#test Spintime-1.$c {Spintime construction} { iwidgets::Spintime .st pack .st -padx 10 -pady 10 -fill both -expand yes update } {}incr c## Option tests which are successful.#test Spintime-2.$o {configuration option} { llength [.st configure]} {25}incr oforeach test { {-arroworient horizontal horizontal} {-arroworient vertical vertical} {-background #d9d9d9 #d9d9d9} {-cursor gumby gumby} {-hourlabel Hour: Hour:} {-houron false false} {-houron true true} {-hourwidth 4 4} {-labelmargin 4 4} {-labelpos n n} {-labelpos s s} {-labelpos e e} {-labelpos w w} {-militaryon no no} {-militaryon yes yes} {-minutelabel Minute: Minute:} {-minuteon false false} {-minuteon true true} {-minutewidth 4 4} {-orient horizontal horizontal} {-orient vertical vertical} {-secondlabel Second: Second:} {-secondon false false} {-secondon true true} {-secondwidth 4 4} {-textbackground GhostWhite GhostWhite} {-timemargin 3 3}} { set option [lindex $test 0] test Spintime-2.$o "configuration options, $option" { .st configure $option [lindex $test 1] lindex [.st configure $option] 4 } [lindex $test 2] update incr o}## Method tests which are successful.#foreach test { {{.st show "21:21:21"} {}} {{.st get -string} "21:21:21"}} { set method [lindex [lindex $test 0] 1] test Spintime-3.$m "object methods, $method" { list [catch {eval [lindex $test 0]} msg] $msg } [list 0 [lindex $test 1]] update incr m}foreach test { {{.st show bogus} {bad time: "bogus", must be a valid time string, clock clicks value or the keyword now}} {{.st get bogus} {bad format option "bogus": should be -string or -clicks}}} { set method [lindex [lindex $test 0] 1] test ScrolledListBox-3.$m "object methods, $method" { list [catch {eval [lindex $test 0]} msg] $msg } [list 1 [lindex $test 1]] incr m}## Conclusion of constrcution/destruction tests#test Spintime-1.$c {Spintime destruction} { destroy .st update } {}incr ctest Spintime-1.$c {Spintime construction} { iwidgets::spintime .st pack .st -padx 10 -pady 10 -fill both -expand yes update } {}incr ctest Spintime-1.$c {Spintime destruction} { destroy .st update } {}incr ctest Spintime-1.$c {Spintime destruction} { iwidgets::spintime .st pack .st destroy .st update } {}::tcltest::cleanupTestsexit
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -