/* * 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.server.computation.task.projectanalysis.formula.counter; import org.junit.Test; import static org.assertj.core.api.Assertions.assertThat; public class DoubleValueTest { @Test public void newly_created_DoubleVariationValue_is_unset_and_has_value_0() { verifyUnsetVariationValue(new DoubleValue()); } @Test public void increment_double_sets_DoubleVariationValue_and_increments_value() { verifySetVariationValue(new DoubleValue().increment(10.6), 10.6); } @Test public void increment_DoubleVariationValue_has_no_effect_if_arg_is_null() { verifyUnsetVariationValue(new DoubleValue().increment(null)); } @Test public void increment_DoubleVariationValue_has_no_effect_if_arg_is_unset() { verifyUnsetVariationValue(new DoubleValue().increment(new DoubleValue())); } @Test public void increment_DoubleVariationValue_increments_by_the_value_of_the_arg() { DoubleValue source = new DoubleValue().increment(10); DoubleValue target = new DoubleValue().increment(source); verifySetVariationValue(target, 10); } @Test public void multiple_calls_to_increment_DoubleVariationValue_increments_by_the_value_of_the_arg() { DoubleValue target = new DoubleValue() .increment(new DoubleValue().increment(35)) .increment(new DoubleValue().increment(10)); verifySetVariationValue(target, 45); } @Test public void multiples_calls_to_increment_double_increment_the_value() { DoubleValue variationValue = new DoubleValue() .increment(10.6) .increment(95.4); verifySetVariationValue(variationValue, 106); } private static void verifyUnsetVariationValue(DoubleValue variationValue) { assertThat(variationValue.isSet()).isFalse(); assertThat(variationValue.getValue()).isEqualTo(0); } private static void verifySetVariationValue(DoubleValue variationValue, double expected) { assertThat(variationValue.isSet()).isTrue(); assertThat(variationValue.getValue()).isEqualTo(expected); } }