Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
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
main
Method · 0.95
main
Method · 0.95
Calls
3
verify
Method · 0.95
isEmpty
Method · 0.65
add
Method · 0.65
Tested by
no test coverage detected