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

通讯编程

开发平台:

Visual C++

  1. # Commands covered:  concat
  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-1996 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: concat.test,v 1.5 2000/04/10 17:18:58 ericm Exp $
  15. if {[lsearch [namespace children] ::tcltest] == -1} {
  16.     package require tcltest
  17.     namespace import -force ::tcltest::*
  18. }
  19. test concat-1.1 {simple concatenation} {
  20.     concat a b c d e f g
  21. } {a b c d e f g}
  22. test concat-1.2 {merging lists together} {
  23.     concat a {b c d} {e f g h}
  24. } {a b c d e f g h}
  25. test concat-1.3 {merge lists, retain sub-lists} {
  26.     concat a {b {c d}} {{e f}} g h
  27. } {a b {c d} {e f} g h}
  28. test concat-1.4 {special characters} {
  29.     concat a{ {b {c d} {d
  30. } "a{ b \{c d {d"
  31. test concat-2.1 {error: one empty argument} {
  32.     concat {}
  33. } {}
  34. test concat-3.1 {error: no arguments} {
  35.     list [catch concat msg] $msg
  36. } {0 {}}
  37. test concat-4.1 {pruning off extra white space} {
  38.     concat {} {a b c}
  39. } {a b c}
  40. test concat-4.2 {pruning off extra white space} {
  41.     concat x y "  a b c nt  " "   "  " def "
  42. } {x y a b c def}
  43. test concat-4.3 {pruning off extra white space sets length correctly} {
  44.     llength [concat { {{a}} }]
  45. } 1
  46. # cleanup
  47. ::tcltest::cleanupTests
  48. return