Exemple #1
0
  @Test
  public final void testGetConnections() throws SaikuOlapException {
    List<String> list = new ArrayList<>();
    list.add("test");
    List<SaikuConnection> connections = olapMetaExplorer.getConnections(list);

    assertNotNull(connections);

    assertEquals("test", connections.get(0).getName());
  }