Applied checkstyle rules

This commit is contained in:
Marcin Grzejszczak
2016-08-29 12:04:21 +02:00
parent c7a44b92ae
commit bfc2172d66
86 changed files with 509 additions and 482 deletions

View File

@@ -2,13 +2,13 @@
* Copyright 2009 Wilfred Springer
* Copyright 2012 Jason Pell
* Copyright 2013 Antonio García-Domínguez
*
* <p>
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* <p>
* http://www.apache.org/licenses/LICENSE-2.0
* <p>
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
@@ -17,23 +17,22 @@
*/
package repackaged.nl.flotsam.xeger;
import java.util.Random;
import org.hamcrest.Matchers;
import org.junit.Test;
import java.util.Random;
import static org.junit.Assert.assertThat;
public class XegerUtilsTest {
@Test
public void shouldGenerateRandomNumberCorrectly() {
Random random = new Random();
for (int i = 0; i < 100; i++) {
int number = Xeger.getRandomInt(3, 7, random);
assertThat(number, Matchers.greaterThanOrEqualTo(3));
assertThat(number, Matchers.lessThanOrEqualTo(7));
}
}
@Test public void shouldGenerateRandomNumberCorrectly() {
Random random = new Random();
for (int i = 0; i < 100; i++) {
int number = Xeger.getRandomInt(3, 7, random);
assertThat(number, Matchers.greaterThanOrEqualTo(3));
assertThat(number, Matchers.lessThanOrEqualTo(7));
}
}
}