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

通讯编程

开发平台:

Visual C++

  1. # Commands covered:  join
  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: join.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 join-1.1 {basic join commands} {
  20.     join {a b c} xyz
  21. } axyzbxyzc
  22. test join-1.2 {basic join commands} {
  23.     join {a b c} {}
  24. } abc
  25. test join-1.3 {basic join commands} {
  26.     join {} xyz
  27. } {}
  28. test join-1.4 {basic join commands} {
  29.     join {12 34 56}
  30. } {12 34 56}
  31. test join-2.1 {join errors} {
  32.     list [catch join msg] $msg $errorCode
  33. } {1 {wrong # args: should be "join list ?joinString?"} NONE}
  34. test join-2.2 {join errors} {
  35.     list [catch {join a b c} msg] $msg $errorCode
  36. } {1 {wrong # args: should be "join list ?joinString?"} NONE}
  37. test join-2.3 {join errors} {
  38.     list [catch {join "a { c" 111} msg] $msg $errorCode
  39. } {1 {unmatched open brace in list} NONE}
  40. test join-3.1 {joinString is binary ok} {
  41.   string length [join {a b c} ab]
  42. } 9
  43. test join-3.2 {join is binary ok} {
  44.   string length [join "ab ab ab"]
  45. } 11
  46. # cleanup
  47. ::tcltest::cleanupTests
  48. return