package tests;
import src.Context;
import com.mysql.jdbc.Connection;
import junit.framework.TestCase;
public class ContextTest extends TestCase {
public void testDBConnection() throws Exception {
Connection conS = Context.getSourceConnection();
assertFalse(conS.isClosed());
Connection conD = Context.getDestinationConnection();
assertFalse(conD.isClosed());
}
}