10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
# See the file "license.terms" for information on usage and redistribution
# of this file, and for a DISCLAIMER OF ALL WARRANTIES.
#
# SCCS: @(#) result.test 1.4 97/12/08 15:07:49
if {[lsearch [namespace children] ::tcltest] == -1} {
package require tcltest
namespace import ::tcltest::*
}
# Some tests require the testsaveresult command
set ::tcltest::testConstraints(testsaveresult) \
[expr {[info commands testsaveresult] != {}}]
|
|
|
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
# See the file "license.terms" for information on usage and redistribution
# of this file, and for a DISCLAIMER OF ALL WARRANTIES.
#
# SCCS: @(#) result.test 1.4 97/12/08 15:07:49
if {[lsearch [namespace children] ::tcltest] == -1} {
package require tcltest
namespace import -force ::tcltest::*
}
# Some tests require the testsaveresult command
set ::tcltest::testConstraints(testsaveresult) \
[expr {[info commands testsaveresult] != {}}]
|