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

通讯编程

开发平台:

Visual C++

  1. # Commands covered:  AppleScript
  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) 1997 Sun Microsystems, Inc.
  8. # Copyright (c) 1998-1999 by Scriptics Corporation.
  9. #
  10. # See the file "license.terms" for information on usage and redistribution
  11. # of this file, and for a DISCLAIMER OF ALL WARRANTIES.
  12. #
  13. # RCS: @(#) $Id: osa.test,v 1.6 2000/04/10 17:19:02 ericm Exp $
  14. if {[lsearch [namespace children] ::tcltest] == -1} {
  15.     package require tcltest
  16.     namespace import -force ::tcltest::*
  17. }
  18. # Only run the test if we can load the AppleScript command
  19. set ::tcltest::testConstraints(appleScript) [expr {[info commands AppleScript] != ""}]
  20. test osa-1.1 {Tcl_OSAComponentCmd} {macOnly appleScript} {
  21.     list [catch AppleScript msg] $msg
  22. } {1 {wrong # args: should be "AppleScript option ?arg ...?"}}
  23. test osa-1.2 {Tcl_OSAComponentCmd} {macOnly appleScript} {
  24.     list [catch {AppleScript x} msg] $msg
  25. } {1 {bad option "x": should be compile, decompile, delete, execute, info, load, run or store}}
  26. test osa-1.3 {TclOSACompileCmd} {macOnly appleScript} {
  27.     list [catch {AppleScript compile} msg] $msg
  28. } {1 {wrong # args: should be "AppleScript compile ?options? code"}}
  29. # cleanup
  30. ::tcltest::cleanupTests
  31. return