URL
https://opencores.org/ocsvn/or1k/or1k/trunk
Subversion Repositories or1k
[/] [or1k/] [trunk/] [insight/] [itcl/] [iwidgets3.0.0/] [tests/] [usual.test] - Rev 1780
Go to most recent revision | Compare with Previous | Blame | View Log
# This file is a Tcl script to test out all of the "usual" options
# for all of the [incr Widgets]. It looks for other tests in this
# directory, and tries to create a mega-widget with each of these
# as a component. If there are any problems with "usual" definitions,
# they will be found here.
#
# See the file "license.terms" for information on usage and redistribution
# of this file, and for a DISCLAIMER OF ALL WARRANTIES.
#
# @(#) $Id: usual.test,v 1.1.1.1 2002-01-16 10:24:51 markom Exp $
package require Iwidgets 3.0
if {[string compare test [info procs test]] == 1} {
source defs
}
wm geometry . {}
raise .
# ----------------------------------------------------------------------
# Create a new mega-widget class that we can use to add other
# classes as components.
# ----------------------------------------------------------------------
test usual-1.1 {create a mega-widget that we can add components to} {
itcl::class TestUsual {
inherit itk::Widget
method do {cmd} {
eval $cmd
}
}
TestUsual .testUsual
} {.testUsual}
# ----------------------------------------------------------------------
# Now, scan through all of the tests in this directory and look
# for mega-widgets. Add each mega-widget to the test class.
# ----------------------------------------------------------------------
set unique 0
foreach file [glob *.test] {
set widget [file rootname [file tail $file]]
if {$widget != "usual"} {
set name "c[incr unique]"
test usual-1.2.$name "verify \"usual\" options for $widget" {
.testUsual do [format {
itk_component add %s {
iwidgets::%s $itk_interior.%s
}
} $name $widget $name]
} $name
}
}
Go to most recent revision | Compare with Previous | Blame | View Log