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

通讯编程

开发平台:

Visual C++

  1. # Commands covered:  llength
  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-1993 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: llength.test,v 1.5 2000/04/10 17:19:01 ericm Exp $
  15. if {[lsearch [namespace children] ::tcltest] == -1} {
  16.     package require tcltest
  17.     namespace import -force ::tcltest::*
  18. }
  19. test llength-1.1 {length of list} {
  20.     llength {a b c d}
  21. } 4
  22. test llength-1.2 {length of list} {
  23.     llength {a b c {a b {c d}} d}
  24. } 5
  25. test llength-1.3 {length of list} {
  26.     llength {}
  27. } 0
  28. test llength-2.1 {error conditions} {
  29.     list [catch {llength} msg] $msg
  30. } {1 {wrong # args: should be "llength list"}}
  31. test llength-2.2 {error conditions} {
  32.     list [catch {llength 123 2} msg] $msg
  33. } {1 {wrong # args: should be "llength list"}}
  34. test llength-2.3 {error conditions} {
  35.     list [catch {llength "a b c {"} msg] $msg
  36. } {1 {unmatched open brace in list}}
  37. # cleanup
  38. ::tcltest::cleanupTests
  39. return