/** tests ConnectionsCapability.getActionSet().getStartupRefreshAction() != null */
  @Test
  public void getStartUpRefreshActionTest() throws Exception {

    ((Resource) mockResource)
        .setResourceDescriptor(ResourceHelper.newResourceDescriptorProteus("roadm"));

    // Test elements not null
    log.info("Checking connections factory");
    Assert.assertNotNull(connectionFactory);
    log.info("Checking capability descriptor");
    Assert.assertNotNull(
        mockResource.getResourceDescriptor().getCapabilityDescriptor("connections"));
    log.info("Creating connection capability");
    connectionsCapability = (AbstractCapability) connectionFactory.create(mockResource);
    Assert.assertNotNull(connectionsCapability);
    connectionsCapability.initialize();

    Assert.assertFalse(connectionsCapability.getActionSet().getRefreshActionName().isEmpty());
    startupActionNames = connectionsCapability.getActionSet().getRefreshActionName();
  }