Package jp.co.ntt.oss.data

Examples of jp.co.ntt.oss.data.JdbcResource


    }
  }

  @Test
  public final void testGetServer() {
    JdbcResource resource = null;

    // normal case
    try {
      resource = JdbcResource.getJdbcResource("jdbcResource.xml",
          "testName");
      assertNotNull(resource);
      assertEquals("testName", resource.getName());
    } catch (Exception e) {
      fail("exception thrown");
    }

    // not exist filename
View Full Code Here

TOP

Related Classes of jp.co.ntt.oss.data.JdbcResource

Copyright © 2018 www.massapicom. 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.