Nick Mazurkin
Results
1
issues of
Nick Mazurkin
Simple test of the simple record ``` record MyRecord(int total, int used) { MyRecord(int total, int used) { Preconditions.checkArgument(total >= 0); this.total = total; Preconditions.checkArgument(used >= 0); Preconditions.checkArgument(used Record: failed...