001: /*
002: * @(#)ICxFactoryUTestI.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.junit.v1.iftc;
028:
029: //import net.sourceforge.groboutils.testing.junitlog.v1.*;
030: import org.easymock.EasyMock;
031: import org.easymock.MockControl;
032: import junit.framework.Test;
033: import junit.framework.TestCase;
034: import junit.framework.TestSuite;
035:
036: /**
037: * Tests the ICxFactory interface.
038: *
039: * @author Matt Albrecht <a href="mailto:groboclown@users.sourceforge.net">groboclown@users.sourceforge.net</a>
040: * @since October 30, 2002
041: * @version $Date: 2003/02/10 22:52:23 $
042: */
043: public class ICxFactoryUTestI extends InterfaceTestCase {
044: //-------------------------------------------------------------------------
045: // Standard JUnit Class-specific declarations
046:
047: private static final Class THIS_CLASS = ICxFactoryUTestI.class;
048:
049: // private static final IJUnitDocumentor LOG = (new JUnitLog(THIS_CLASS)).getDocumentor();
050:
051: public ICxFactoryUTestI(String name, ImplFactory f) {
052: super (name, ICxFactory.class, f);
053: }
054:
055: protected ICxFactory createICxFactory() {
056: return (ICxFactory) createImplObject();
057: }
058:
059: //-------------------------------------------------------------------------
060: // Tests
061:
062: // there is no real way to test the clean-up facility from here.
063:
064: public void testCreateICxObject1() {
065: ICxFactory implf = createICxFactory();
066: assertNotNull("Returned null factory.", implf);
067: }
068:
069: //-------------------------------------------------------------------------
070: // Standard JUnit declarations
071:
072: public static InterfaceTestSuite suite() {
073: InterfaceTestSuite suite = ImplFactoryUTestI.suite();
074: suite.addTestSuite(THIS_CLASS);
075:
076: return suite;
077: }
078:
079: public static void main(String[] args) {
080: String[] name = { THIS_CLASS.getName() };
081:
082: // junit.textui.TestRunner.main( name );
083: // junit.swingui.TestRunner.main( name );
084:
085: junit.textui.TestRunner.main(name);
086: }
087:
088: /**
089: *
090: * @exception Exception thrown under any exceptional condition.
091: */
092: protected void setUp() throws Exception {
093: super .setUp();
094:
095: // set ourself up
096: }
097:
098: /**
099: *
100: * @exception Exception thrown under any exceptional condition.
101: */
102: protected void tearDown() throws Exception {
103: // tear ourself down
104:
105: super.tearDown();
106: }
107: }
|