-
Notifications
You must be signed in to change notification settings - Fork 2
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
added simple counter test #1
base: master
Are you sure you want to change the base?
Conversation
bin/airline, line 0 [r1] (raw file): Comments from Reviewable |
Review status: 0 of 3 files reviewed at latest revision, 4 unresolved discussions. src/main/java/org/corfudb/example/org/corfudb/example/counter/SimpleCounterExample.java, line 35 [r1] (raw file):
You actually shouldn't need to implement ICorfuSMRObject. src/main/java/org/corfudb/example/org/corfudb/example/counter/SimpleCounterExample.java, line 64 [r1] (raw file):
An assertion is a bit strange here. Shouldn't you print the values out? Otherwise the person running the test won't see anything. src/test/java/org/corfudb/example/counter/SimpleCounterTest.java, line 49 [r1] (raw file):
You should use the assertJ package (assertThat()), used throughout the rest of Corfu instead of the Java assert statement. Comments from Reviewable |
Review status: 0 of 4 files reviewed at latest revision, 4 unresolved discussions, all commit checks successful. src/main/java/org/corfudb/example/org/corfudb/example/counter/SimpleCounterExample.java, line 35 [r1] (raw file):
|
This change is