Also rethrow exceptions on failures in ConcurrentClientsTest to
make issues more apparent.
Change-Id: I3e907568c6a384f9512a81c05ae798e11972f607
Signed-off-by: Tomas Cere <tcere@cisco.com>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
</dependency>
+ <dependency>
+ <groupId>org.slf4j</groupId>
+ <artifactId>slf4j-simple</artifactId>
+ <scope>test</scope>
+ </dependency>
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>netconf-client</artifactId>
throw new IllegalStateException(e);
} catch (ExecutionException e) {
LOG.error("Thread for testing client failed", e);
- fail("Client failed: " + e.getMessage());
+ throw e;
}
}