/* * Copyright 2017 Google Inc. All Rights Reserved. * * 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 * * 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. * See the License for the specific language governing permissions and * limitations under the License. */ package com.google.errorprone.bugpatterns; import com.google.errorprone.BugCheckerRefactoringTestHelper; import com.google.errorprone.CompilationTestHelper; import java.io.IOException; import org.junit.Test; import org.junit.runner.RunWith; import org.junit.runners.JUnit4; /** {@link FloatingPointLiteralPrecision}Test */ @RunWith(JUnit4.class) public class FloatingPointLiteralPrecisionTest { @Test public void positive() throws IOException { BugCheckerRefactoringTestHelper.newInstance(new FloatingPointLiteralPrecision(), getClass()) .addInputLines( "in/Test.java", "class Test {", " double d = 1.99999999999999999999999;", " float f = 1.99999999999999999999999f;", "}") .addOutputLines( "out/Test.java", // "class Test {", " double d = 2.0;", " float f = 2.0f;", "}") .doTest(); } @Test public void negative() { CompilationTestHelper.newInstance(FloatingPointLiteralPrecision.class, getClass()) .addSourceLines( "Test.java", "class Test {", " double d2 = 1.0;", " double d3 = 1;", " double d4 = 1e6;", " double d5 = 1e-3;", " double d6 = 1d;", " double d7 = 1_000.0;", " double d8 = 0x1.0p63d;", " float f2 = 1.0f;", " float f3 = 1f;", " float f4 = 0.88f;", " float f5 = 1_000.0f;", " float f6 = 0x1.0p63f;", "}") .doTest(); } }