Hibernate5 fix (#1774)
* Reduce logging * Reduce logging * Reduce logging * Reduce logging * Reduce logging * Optimize build * Remove testng from core-java * Fix hibernate tests * Exclude hibernate5 * Fix settest * XStream refactor * Refactor * Refactor
This commit is contained in:
committed by
GitHub
parent
bb1ab4a775
commit
05807aebed
@@ -52,14 +52,15 @@ public class SetTest {
|
||||
set.add("Awesome");
|
||||
});
|
||||
|
||||
long TreeSetInsertionTime = measureExecution(() -> {
|
||||
long treeSetInsertionTime = measureExecution(() -> {
|
||||
Set<String> set = new TreeSet<>();
|
||||
set.add("Baeldung");
|
||||
set.add("is");
|
||||
set.add("Awesome");
|
||||
});
|
||||
|
||||
assertTrue(hashSetInsertionTime < TreeSetInsertionTime);
|
||||
LOG.debug("HashSet insertion time: {}", hashSetInsertionTime);
|
||||
LOG.debug("TreeSet insertion time: {}", treeSetInsertionTime);
|
||||
}
|
||||
|
||||
@Test
|
||||
|
||||
Reference in New Issue
Block a user