(Precision precision)
| 1121 | } |
| 1122 | |
| 1123 | static Rectangle random(Precision precision) { |
| 1124 | if (precision == Precision.SINGLE) |
| 1125 | return r((float) Math.random() * 1000, (float) Math.random() * 1000); |
| 1126 | else |
| 1127 | return r(Math.random() * 1000, Math.random() * 1000); |
| 1128 | } |
| 1129 | |
| 1130 | @Test |
| 1131 | public void testSearchGreekEarthquakesDouble() { |
no test coverage detected