/** * The MIT License (MIT) * * Copyright (c) 2014-2017 Marc de Verdelhan & respective authors (see AUTHORS) * * Permission is hereby granted, free of charge, to any person obtaining a copy of * this software and associated documentation files (the "Software"), to deal in * the Software without restriction, including without limitation the rights to * use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of * the Software, and to permit persons to whom the Software is furnished to do so, * subject to the following conditions: * * The above copyright notice and this permission notice shall be included in all * copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS * FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR * COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER * IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ package eu.verdelhan.ta4j; import static org.junit.Assert.assertEquals; import static org.junit.Assert.assertNotEquals; /** * Utility class for {@code Decimal} tests. */ public class TATestsUtils { /** Offset for double equality checking */ public static final double TA_OFFSET = 0.0001; /** * Verifies that the actual {@code Decimal} value is equal to the given {@code String} representation. * @param actual the actual {@code Decimal} value * @param expected the given {@code String} representation to compare the actual value to * @throws AssertionError if the actual value is not equal to the given {@code String} representation */ public static void assertDecimalEquals(Decimal actual, String expected) { assertEquals(Decimal.valueOf(expected), actual); } /** * Verifies that the actual {@code Decimal} value is equal to the given {@code Integer} representation. * @param actual the actual {@code Decimal} value * @param expected the given {@code Integer} representation to compare the actual value to * @throws AssertionError if the actual value is not equal to the given {@code Integer} representation */ public static void assertDecimalEquals(Decimal actual, int expected) { assertEquals(Decimal.valueOf(expected), actual); } /** * Verifies that the actual {@code Decimal} value is equal (within a positive offset) to the given {@code Double} representation. * @param actual the actual {@code Decimal} value * @param expected the given {@code Double} representation to compare the actual value to * @throws AssertionError if the actual value is not equal to the given {@code Double} representation */ public static void assertDecimalEquals(Decimal actual, double expected) { assertEquals(expected, actual.toDouble(), TA_OFFSET); } /** * Verifies that the actual {@code Decimal} value is not equal to the given {@code Integer} representation. * @param actual the actual {@code Decimal} value * @param unexpected the given {@code Integer} representation to compare the actual value to * @throws AssertionError if the actual value is equal to the given {@code Integer} representation */ public static void assertDecimalNotEquals(Decimal actual, int unexpected) { assertNotEquals(Decimal.valueOf(unexpected), actual); } }