Package tests

Source Code of tests.ContextTest

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());
  }
}
TOP

Related Classes of tests.ContextTest

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.