Github user anmolnar commented on a diff in the pull request:
https://github.com/apache/zookeeper/pull/440#discussion_r160398954
--- Diff: ivy.xml ---
@@ -133,6 +133,12 @@
<dependency org="org.codehaus.jackson" name="jackson-mapper-asl"
rev="${jackson-mapper-asl.version}"
conf="optional->default"/>
+ <dependency org="io.dropwizard.metrics" name="metrics-core"
+ rev="${dropwizard.version}" conf="default" />
+
+ <dependency org="org.hamcrest" name="hamcrest-all" rev="1.3"
--- End diff --
Unfortunately not. Mockito pulls in hamcrest-core only which contains the
CoreMatchers namespaces. The matcher I use in the test is only included in
hamcrest-all.
I believe it'd be good start using more of Hamcrest matchers anyway.
---