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

通讯编程

开发平台:

Visual C++

  1. # This file tests the AssocData facility of Tcl
  2. #
  3. # This file contains a collection of tests for one or more of the Tcl
  4. # built-in commands.  Sourcing this file into Tcl runs the tests and
  5. # generates output for errors.  No output means no errors were found.
  6. #
  7. # Copyright (c) 1991-1994 The Regents of the University of California.
  8. # Copyright (c) 1994 Sun Microsystems, Inc.
  9. # Copyright (c) 1998-1999 by Scriptics Corporation.
  10. #
  11. # See the file "license.terms" for information on usage and redistribution
  12. # of this file, and for a DISCLAIMER OF ALL WARRANTIES.
  13. #
  14. # RCS: @(#) $Id: assocd.test,v 1.5 2000/04/10 17:18:56 ericm Exp $
  15. if {[lsearch [namespace children] ::tcltest] == -1} {
  16.     package require tcltest
  17.     namespace import -force ::tcltest::*
  18. }
  19. if {[string compare testsetassocdata [info commands testsetassocdata]] != 0} {
  20.     puts "This application hasn't been compiled with the tests for assocData,"
  21.     puts "therefore I am skipping all of these tests."
  22.     ::tcltest::cleanupTests
  23.     return
  24. }
  25. test assocd-1.1 {testing setting assoc data} {
  26.    testsetassocdata a 1
  27. } ""
  28. test assocd-1.2 {testing setting assoc data} {
  29.    testsetassocdata a 2
  30. } ""
  31. test assocd-1.3 {testing setting assoc data} {
  32.    testsetassocdata 123 456
  33. } ""
  34. test assocd-1.4 {testing setting assoc data} {
  35.    testsetassocdata abc "abc d e f"
  36. } ""
  37. test assocd-2.1 {testing getting assoc data} {
  38.    testgetassocdata a
  39. } 2
  40. test assocd-2.2 {testing getting assoc data} {
  41.    testgetassocdata 123
  42. } 456
  43. test assocd-2.3 {testing getting assoc data} {
  44.    testgetassocdata abc
  45. } {abc d e f}
  46. test assocd-2.4 {testing getting assoc data} {
  47.    testgetassocdata xxx
  48. } ""
  49. test assocd-3.1 {testing deleting assoc data} {
  50.    testdelassocdata a
  51. } ""
  52. test assocd-3.2 {testing deleting assoc data} {
  53.    testdelassocdata 123
  54. } ""
  55. test assocd-3.3 {testing deleting assoc data} {
  56.    list [catch {testdelassocdata nonexistent} msg] $msg
  57. } {0 {}}
  58. # cleanup
  59. ::tcltest::cleanupTests
  60. return