001: /*
002: * @(#)CacheDirChannelLoggerUTest.java
003: *
004: * Copyright (C) 2004 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.codecoverage.v2.logger;
028:
029: import java.io.File;
030:
031: import junit.framework.Test;
032: import junit.framework.TestCase;
033: import junit.framework.TestSuite;
034: import net.sourceforge.groboutils.autodoc.v1.AutoDoc;
035: import net.sourceforge.groboutils.codecoverage.v2.ant.AntTestA;
036:
037: /**
038: * Tests the CacheDirChannelLogger class.
039: *
040: * @author Matt Albrecht <a href="mailto:groboclown@users.sourceforge.net">groboclown@users.sourceforge.net</a>
041: * @version $Date: 2004/05/07 06:14:31 $
042: * @since April 20, 2004
043: */
044: public class CacheDirChannelLoggerUTest extends TestCase {
045: //-------------------------------------------------------------------------
046: // Standard JUnit Class-specific declarations
047:
048: private static final Class THIS_CLASS = CacheDirChannelLoggerUTest.class;
049: private static final AutoDoc DOC = new AutoDoc(THIS_CLASS);
050:
051: public CacheDirChannelLoggerUTest(String name) {
052: super (name);
053: }
054:
055: //-------------------------------------------------------------------------
056: // Tests
057:
058: public void testBug1a() {
059: DOC.getIT().testsIssue(923349);
060:
061: // ensure a <= 0 size doesn't cause an error.
062: new CacheDirChannelLogger(new File("."), -1);
063: }
064:
065: public void testBug1b() {
066: DOC.getIT().testsIssue(923349);
067:
068: // ensure a <= 0 size doesn't cause an error.
069: new CacheDirChannelLogger(new File("."), 0);
070: }
071:
072: //-------------------------------------------------------------------------
073: // Helpers
074:
075: //-------------------------------------------------------------------------
076: // Standard JUnit declarations
077:
078: public static Test suite() {
079: TestSuite suite = new TestSuite(THIS_CLASS);
080:
081: return suite;
082: }
083:
084: public static void main(String[] args) {
085: String[] name = { THIS_CLASS.getName() };
086:
087: // junit.textui.TestRunner.main( name );
088: // junit.swingui.TestRunner.main( name );
089:
090: junit.textui.TestRunner.main(name);
091: }
092:
093: /**
094: *
095: * @exception Exception thrown under any exceptional condition.
096: */
097: protected void setUp() throws Exception {
098: super .setUp();
099:
100: // set ourself up
101: }
102:
103: /**
104: *
105: * @exception Exception thrown under any exceptional condition.
106: */
107: protected void tearDown() throws Exception {
108: // tear ourself down
109:
110: super.tearDown();
111: }
112: }
|