Source Code Cross Referenced for TestExceptionPending.java in  » Scripting » jacl » tests » Java Source Code / Java DocumentationJava Source Code and Java Documentation

Java Source Code / Java Documentation
1. 6.0 JDK Core
2. 6.0 JDK Modules
3. 6.0 JDK Modules com.sun
4. 6.0 JDK Modules com.sun.java
5. 6.0 JDK Modules sun
6. 6.0 JDK Platform
7. Ajax
8. Apache Harmony Java SE
9. Aspect oriented
10. Authentication Authorization
11. Blogger System
12. Build
13. Byte Code
14. Cache
15. Chart
16. Chat
17. Code Analyzer
18. Collaboration
19. Content Management System
20. Database Client
21. Database DBMS
22. Database JDBC Connection Pool
23. Database ORM
24. Development
25. EJB Server geronimo
26. EJB Server GlassFish
27. EJB Server JBoss 4.2.1
28. EJB Server resin 3.1.5
29. ERP CRM Financial
30. ESB
31. Forum
32. GIS
33. Graphic Library
34. Groupware
35. HTML Parser
36. IDE
37. IDE Eclipse
38. IDE Netbeans
39. Installer
40. Internationalization Localization
41. Inversion of Control
42. Issue Tracking
43. J2EE
44. JBoss
45. JMS
46. JMX
47. Library
48. Mail Clients
49. Net
50. Parser
51. PDF
52. Portal
53. Profiler
54. Project Management
55. Report
56. RSS RDF
57. Rule Engine
58. Science
59. Scripting
60. Search Engine
61. Security
62. Sevlet Container
63. Source Control
64. Swing Library
65. Template Engine
66. Test Coverage
67. Testing
68. UML
69. Web Crawler
70. Web Framework
71. Web Mail
72. Web Server
73. Web Services
74. Web Services apache cxf 2.0.1
75. Web Services AXIS2
76. Wiki Engine
77. Workflow Engines
78. XML
79. XML UI
Java
Java Tutorial
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
Photoshop Tutorials
Maya Tutorials
Flash Tutorials
3ds-Max Tutorials
Illustrator Tutorials
GIMP Tutorials
C# / C Sharp
C# / CSharp Tutorial
C# / CSharp Open Source
ASP.Net
ASP.NET Tutorial
JavaScript DHTML
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
Ruby
PHP
Python
Python Tutorial
Python Open Source
SQL Server / T-SQL
SQL Server / T-SQL Tutorial
Oracle PL / SQL
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
Flash / Flex / ActionScript
VBA / Excel / Access / Word
XML
XML Tutorial
Microsoft Office PowerPoint 2007 Tutorial
Microsoft Office Excel 2007 Tutorial
Microsoft Office Word 2007 Tutorial
Java Source Code / Java Documentation » Scripting » jacl » tests 
Source Cross Referenced  Class Diagram Java Document (Java Doc) 


001:        /* 
002:         * TestExceptionPending.java --
003:         *
004:         *      This file tests interp APIs that deal with raising
005:         *      exceptions in Java APIs. These may involve pending
006:         *      exceptions from commands that are evaluated.
007:         *
008:         * Copyright (c) 2006 by Mo DeJong
009:         *
010:         * See the file "license.terms" for information on usage and redistribution
011:         * of this file, and for a DISCLAIMER OF ALL WARRANTIES.
012:         *
013:         * RCS: @(#) $Id: TestExceptionPending.java,v 1.1 2006/07/26 20:55:27 mdejong Exp $
014:         */
015:
016:        package tests;
017:
018:        import tcl.lang.*;
019:
020:        public class TestExceptionPending {
021:
022:            public static boolean pending1() {
023:                // Create a new Interpreter and then
024:                // invoke Interp.eval(), this should
025:                // raise a Java exception. This test
026:                // checks that an interpreter is created
027:                // with the proper flags.
028:
029:                Interp interp = new Interp();
030:
031:                try {
032:                    interp.eval("unknown_command");
033:                } catch (TclException te) {
034:                    return true;
035:                } finally {
036:                    interp.dispose();
037:                }
038:                return false;
039:            }
040:
041:            public static boolean pending2(Interp interp) {
042:                // Invoke Interp.eval(), this should
043:                // raise a Java exception because there
044:                // is no command with the given name.
045:                // This test checks that invoking the
046:                // Interp.eval() API from Java will
047:                // raise the exception as expected.
048:
049:                try {
050:                    interp.eval("unknown_command");
051:                } catch (TclException te) {
052:                    return true;
053:                }
054:
055:                return false;
056:            }
057:
058:            public static boolean pending3(Interp interp) {
059:                // Invoke Interp.eval(), this should raise
060:                // a Java exception because there is a
061:                // runtime error since the variable in
062:                // question is not set.
063:
064:                try {
065:                    interp.eval("set unknown_global_variable");
066:                } catch (TclException te) {
067:                    return true;
068:                }
069:
070:                return false;
071:            }
072:
073:            public static boolean pending4(Interp interp) {
074:                // Throw a Java exception using a test
075:                // command implemented in Java. This
076:                // exception should be propagated
077:                // up the stack to this caller.
078:
079:                try {
080:                    interp.eval("jtest tclexception");
081:                } catch (TclException te) {
082:                    return true;
083:                }
084:
085:                return false;
086:            }
087:
088:            public static boolean pending5(Interp interp) {
089:                // Throw a Java exception using a test
090:                // command implemented in Java. This
091:                // exception should be propagated
092:                // up the stack to this caller. This
093:                // excetpion is not derived from
094:                // TclException.
095:
096:                try {
097:                    interp.eval("jtest npe");
098:                } catch (TclException npe) {
099:                    // No-op
100:                } catch (NullPointerException npe) {
101:                    return true;
102:                }
103:
104:                return false;
105:            }
106:
107:        }
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.