001: /*
002: * @(#)AllowCapturePassThroughAdapterIUTest.java
003: *
004: * Copyright (C) 2002-2003 Matt Albrecht
005: * groboclown@users.sourceforge.net
006: * http://groboutils.sourceforge.net
007: *
008: * Permission is hereby granted, free of charge, to any person obtaining a
009: * copy of this software and associated documentation files (the "Software"),
010: * to deal in the Software without restriction, including without limitation
011: * the rights to use, copy, modify, merge, publish, distribute, sublicense,
012: * and/or sell copies of the Software, and to permit persons to whom the
013: * Software is furnished to do so, subject to the following conditions:
014: *
015: * The above copyright notice and this permission notice shall be included in
016: * all copies or substantial portions of the Software.
017: *
018: * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
019: * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
020: * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
021: * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
022: * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
023: * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
024: * DEALINGS IN THE SOFTWARE.
025: */
026:
027: package net.sourceforge.groboutils.uicapture.v1.event;
028:
029: import java.awt.Robot;
030:
031: import net.sourceforge.groboutils.autodoc.v1.AutoDoc;
032: import junit.framework.Test;
033: import junit.framework.TestCase;
034: import junit.framework.TestSuite;
035:
036: /**
037: * Tests the AllowCapturePassThroughAdapter class. Since the adapter is
038: * an extention to CaptureAdapter,
039: * we'll extend that tester to allow testing of its features, too.
040: *
041: * @author Matt Albrecht <a href="mailto:groboclown@users.sourceforge.net">groboclown@users.sourceforge.net</a>
042: * @since Jan 6, 2002
043: * @version $Date: 2003/02/10 22:52:33 $
044: */
045: public class AllowCapturePassThroughAdapterIUTest extends
046: CaptureAdapterIUTest {
047: //-------------------------------------------------------------------------
048: // Standard JUnit Class-specific declarations
049:
050: private static final Class THIS_CLASS = AllowCapturePassThroughAdapterIUTest.class;
051: private static final AutoDoc DOC = new AutoDoc(THIS_CLASS);
052:
053: public AllowCapturePassThroughAdapterIUTest(String name) {
054: super (name);
055: }
056:
057: //-------------------------------------------------------------------------
058: // Tests
059:
060: public void testInstantiation() {
061: // make sure the casting and hierarchy is correct
062: IAllowCapturePassThroughListener ica = createAllowCapturePassThroughAdapter();
063: }
064:
065: public void testBasics2() {
066: AllowCapturePassThroughAdapter acpta = createAllowCapturePassThroughAdapter();
067: assertTrue("allowMousePressed did not return true.", acpta
068: .allowMousePressed(null));
069: assertTrue("allowMouseReleased did not return true.", acpta
070: .allowMouseReleased(null));
071: assertTrue("allowKeyPressed did not return true.", acpta
072: .allowKeyPressed(null));
073: assertTrue("allowKeyReleased did not return true.", acpta
074: .allowKeyReleased(null));
075: }
076:
077: /**
078: * Override super's implementation.
079: */
080: protected CaptureAdapter createCaptureAdapter() {
081: return new AllowCapturePassThroughAdapter();
082: }
083:
084: protected AllowCapturePassThroughAdapter createAllowCapturePassThroughAdapter() {
085: return new AllowCapturePassThroughAdapter();
086: }
087:
088: //-------------------------------------------------------------------------
089: // Standard JUnit declarations
090:
091: public static Test suite() {
092: TestSuite suite = new TestSuite(THIS_CLASS);
093:
094: return suite;
095: }
096:
097: public static void main(String[] args) {
098: String[] name = { THIS_CLASS.getName() };
099:
100: // junit.textui.TestRunner.main( name );
101: // junit.swingui.TestRunner.main( name );
102:
103: junit.textui.TestRunner.main(name);
104: }
105:
106: /**
107: *
108: * @exception Exception thrown under any exceptional condition.
109: */
110: protected void setUp() throws Exception {
111: super .setUp();
112:
113: // set ourself up
114: }
115:
116: /**
117: *
118: * @exception Exception thrown under any exceptional condition.
119: */
120: protected void tearDown() throws Exception {
121: // tear ourself down
122:
123: super.tearDown();
124: }
125: }
|