/* * SonarQube * Copyright (C) 2009-2017 SonarSource SA * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation; either * version 3 of the License, or (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public License * along with this program; if not, write to the Free Software Foundation, * Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. */ package org.sonar.scanner.issue.ignore.pattern; import org.junit.Test; import org.sonar.scanner.issue.ignore.pattern.LineRange; import static org.assertj.core.api.Assertions.assertThat; public class LineRangeTest { @Test(expected = IllegalArgumentException.class) public void lineRangeShouldBeOrdered() { new LineRange(25, 12); } @Test public void shouldConvertLineRangeToLines() { LineRange range = new LineRange(12, 15); assertThat(range.toLines()).containsOnly(12, 13, 14, 15); } @Test public void shouldTestInclusionInRangeOfLines() { LineRange range = new LineRange(12, 15); assertThat(range.in(3)).isFalse(); assertThat(range.in(12)).isTrue(); assertThat(range.in(13)).isTrue(); assertThat(range.in(14)).isTrue(); assertThat(range.in(15)).isTrue(); assertThat(range.in(16)).isFalse(); } @Test public void testToString() throws Exception { assertThat(new LineRange(12, 15).toString()).isEqualTo("[12-15]"); } @Test public void testEquals() throws Exception { LineRange range = new LineRange(12, 15); assertThat(range).isEqualTo(range); assertThat(range).isEqualTo(new LineRange(12, 15)); assertThat(range).isNotEqualTo(new LineRange(12, 2000)); assertThat(range).isNotEqualTo(new LineRange(1000, 2000)); assertThat(range).isNotEqualTo(null); assertThat(range).isNotEqualTo(new StringBuffer()); } @Test public void testHashCode() throws Exception { assertThat(new LineRange(12, 15).hashCode()).isEqualTo(new LineRange(12, 15).hashCode()); } }