diff --git a/src/test/java/net/romvoid95/exoplanets/MathTests.java b/src/test/java/net/romvoid95/exoplanets/MathTests.java deleted file mode 100644 index ed70117..0000000 --- a/src/test/java/net/romvoid95/exoplanets/MathTests.java +++ /dev/null @@ -1,63 +0,0 @@ -/** - * - */ -package net.romvoid95.exoplanets; - -import static org.junit.jupiter.api.Assertions.*; - -import org.junit.jupiter.api.BeforeAll; -import org.junit.jupiter.api.BeforeEach; -import org.junit.jupiter.api.Test; - -import net.romvoid95.api.math.Conversion; - -/** - * @author ROMVoid95 - * - */ -class MathTests { - - /** - * @throws java.lang.Exception - */ - @BeforeAll - static void setUpBeforeClass () throws Exception {} - - /** - * @throws java.lang.Exception - */ - @BeforeEach - void setUp () throws Exception {} - - /** - * Test method for {@link net.romvoid95.api.math.Conversion#toCelciusInt(double)}. - */ - @Test - final void testToCelciusInt () { - assertEquals(0, Conversion.toCelciusInt(32.0)); - } - - /** - * Test method for {@link net.romvoid95.api.math.Conversion#toCelciusDouble(double)}. - */ - @Test - final void testToCelciusDouble () { - assertEquals(0.0, Conversion.toCelciusDouble(32.0)); - } - - /** - * Test method for {@link net.romvoid95.api.math.Conversion#toFahrenheit(double)}. - */ - @Test - final void testToFahrenheitOne () { - assertEquals(32.0, Conversion.toFahrenheit(0.0)); - } - - /** - * Test method for {@link net.romvoid95.api.math.Conversion#toFahrenheit(int)}. - */ - @Test - final void testToFahrenheitTwo () { - assertEquals(32.0, Conversion.toFahrenheit(0)); - } -} diff --git a/test/net/romvoid95/exoplanets/MathTests.class b/test/net/romvoid95/exoplanets/MathTests.class index 07c0819..c92db7b 100644 Binary files a/test/net/romvoid95/exoplanets/MathTests.class and b/test/net/romvoid95/exoplanets/MathTests.class differ