Update of /cvsroot/batchserver/batchserver/test/org/jmonks/batchserver/framework/util
In directory sc8-pr-cvs3.sourceforge.net:/tmp/cvs-serv19259
Added Files:
JdbcConnectionHelperTest.java
Log Message:
no message
--- NEW FILE: JdbcConnectionHelperTest.java ---
/*
* JdbcConnectionHelperTest.java
* JUnit based test
*
* Created on September 10, 2006, 5:18 PM
*/
package org.jmonks.batchserver.framework.util;
import junit.framework.*;
import java.sql.Connection;
import java.sql.DriverManager;
import java.util.Map;
import org.apache.log4j.Logger;
/**
*
* @author Suresh Pragada
*/
public class JdbcConnectionHelperTest extends TestCase
{
public JdbcConnectionHelperTest(String testName)
{
super(testName);
}
protected void setUp() throws Exception
{
}
protected void tearDown() throws Exception
{
}
public static Test suite()
{
TestSuite suite = new TestSuite(JdbcConnectionHelperTest.class);
return suite;
}
/**
* Test of getConnection method, of class org.jmonks.batchserver.framework.util.JdbcConnectionHelper.
*/
public void testGetConnection()
{
System.out.println("testGetConnection");
// TODO add your test code below by replacing the default call to fail.
fail("The test case is empty.");
}
/**
* Test of closeConnection method, of class org.jmonks.batchserver.framework.util.JdbcConnectionHelper.
*/
public void testCloseConnection()
{
System.out.println("testCloseConnection");
// TODO add your test code below by replacing the default call to fail.
fail("The test case is empty.");
}
}
|