MCPcopy Create free account
hub / github.com/ReadyTalk/avian / isEmptyTest

Method isEmptyTest

test/QueueHelper.java:23–28  ·  view source on GitHub ↗
(Queue<Object> q)

Source from the content-addressed store, hash-verified

21 }
22
23 public static void isEmptyTest(Queue<Object> q) {
24 verify(q.isEmpty());
25
26 q.add(new Object());
27 verify(! q.isEmpty());
28 }
29
30 public static void addTest(Queue<Object> q) {
31 Object testObject = new Object();

Callers 2

mainMethod · 0.95
mainMethod · 0.95

Calls 3

verifyMethod · 0.95
isEmptyMethod · 0.65
addMethod · 0.65

Tested by

no test coverage detected