001: /*
002: * @(#)CaptureAdapterIUTest.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 CaptureAdapter class.
038: *
039: * @author Matt Albrecht <a href="mailto:groboclown@users.sourceforge.net">groboclown@users.sourceforge.net</a>
040: * @since Jan 6, 2002
041: * @version $Date: 2003/02/10 22:52:33 $
042: */
043: public class CaptureAdapterIUTest extends TestCase {
044: //-------------------------------------------------------------------------
045: // Standard JUnit Class-specific declarations
046:
047: private static final Class THIS_CLASS = CaptureAdapterIUTest.class;
048: private static final AutoDoc DOC = new AutoDoc(THIS_CLASS);
049:
050: public CaptureAdapterIUTest(String name) {
051: super (name);
052: }
053:
054: //-------------------------------------------------------------------------
055: // Tests
056:
057: public void testInstantiation() {
058: // make sure the casting and hierarchy is correct
059: ICaptureListener ica = createCaptureAdapter();
060: }
061:
062: public void testBasics() {
063: CaptureAdapter ca = createCaptureAdapter();
064: ca.mouseWheelMoved(null);
065: ca.mouseMoved(null);
066: ca.mousePressed(null);
067: ca.mouseReleased(null);
068: ca.keyPressed(null);
069: ca.keyReleased(null);
070: }
071:
072: protected CaptureAdapter createCaptureAdapter() {
073: return new CaptureAdapter();
074: }
075:
076: //-------------------------------------------------------------------------
077: // Standard JUnit declarations
078:
079: public static Test suite() {
080: TestSuite suite = new TestSuite(THIS_CLASS);
081:
082: return suite;
083: }
084:
085: public static void main(String[] args) {
086: String[] name = { THIS_CLASS.getName() };
087:
088: // junit.textui.TestRunner.main( name );
089: // junit.swingui.TestRunner.main( name );
090:
091: junit.textui.TestRunner.main(name);
092: }
093:
094: /**
095: *
096: * @exception Exception thrown under any exceptional condition.
097: */
098: protected void setUp() throws Exception {
099: super .setUp();
100:
101: // set ourself up
102: }
103:
104: /**
105: *
106: * @exception Exception thrown under any exceptional condition.
107: */
108: protected void tearDown() throws Exception {
109: // tear ourself down
110:
111: super.tearDown();
112: }
113: }
|