os/persistentdata/persistentstorage/sqlite3api/TEST/TCL/tcldistribution/tests/llength.test
author sl@SLION-WIN7.fritz.box
Fri, 15 Jun 2012 03:10:57 +0200
changeset 0 bde4ae8d615e
permissions -rw-r--r--
First public contribution.
sl@0
     1
# Commands covered:  llength
sl@0
     2
#
sl@0
     3
# This file contains a collection of tests for one or more of the Tcl
sl@0
     4
# built-in commands.  Sourcing this file into Tcl runs the tests and
sl@0
     5
# generates output for errors.  No output means no errors were found.
sl@0
     6
#
sl@0
     7
# Copyright (c) 1991-1993 The Regents of the University of California.
sl@0
     8
# Copyright (c) 1994 Sun Microsystems, Inc.
sl@0
     9
# Copyright (c) 1998-1999 by Scriptics Corporation.
sl@0
    10
#
sl@0
    11
# See the file "license.terms" for information on usage and redistribution
sl@0
    12
# of this file, and for a DISCLAIMER OF ALL WARRANTIES.
sl@0
    13
#
sl@0
    14
# RCS: @(#) $Id: llength.test,v 1.5 2000/04/10 17:19:01 ericm Exp $
sl@0
    15
sl@0
    16
if {[lsearch [namespace children] ::tcltest] == -1} {
sl@0
    17
    package require tcltest
sl@0
    18
    namespace import -force ::tcltest::*
sl@0
    19
}
sl@0
    20
sl@0
    21
test llength-1.1 {length of list} {
sl@0
    22
    llength {a b c d}
sl@0
    23
} 4
sl@0
    24
test llength-1.2 {length of list} {
sl@0
    25
    llength {a b c {a b {c d}} d}
sl@0
    26
} 5
sl@0
    27
test llength-1.3 {length of list} {
sl@0
    28
    llength {}
sl@0
    29
} 0
sl@0
    30
sl@0
    31
test llength-2.1 {error conditions} {
sl@0
    32
    list [catch {llength} msg] $msg
sl@0
    33
} {1 {wrong # args: should be "llength list"}}
sl@0
    34
test llength-2.2 {error conditions} {
sl@0
    35
    list [catch {llength 123 2} msg] $msg
sl@0
    36
} {1 {wrong # args: should be "llength list"}}
sl@0
    37
test llength-2.3 {error conditions} {
sl@0
    38
    list [catch {llength "a b c \{"} msg] $msg
sl@0
    39
} {1 {unmatched open brace in list}}
sl@0
    40
sl@0
    41
# cleanup
sl@0
    42
::tcltest::cleanupTests
sl@0
    43
return
sl@0
    44
sl@0
    45
sl@0
    46
sl@0
    47
sl@0
    48
sl@0
    49
sl@0
    50
sl@0
    51
sl@0
    52
sl@0
    53
sl@0
    54
sl@0
    55