Package com.google.errorprone.suppress

Source Code of com.google.errorprone.suppress.SuppressWarningsTest

/*
* Copyright 2012 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.suppress;


import static java.util.Arrays.asList;
import static org.hamcrest.core.Is.is;
import static org.junit.Assert.assertThat;

import com.google.errorprone.BugPattern;
import com.google.errorprone.ErrorProneScanner;
import com.google.errorprone.ErrorProneScanner.EnabledPredicate;
import com.google.errorprone.ErrorProneTestCompiler;
import com.google.errorprone.bugpatterns.BugChecker;
import com.google.errorprone.bugpatterns.DeadException;
import com.google.errorprone.bugpatterns.EmptyIfStatement;
import com.google.errorprone.bugpatterns.SelfAssignment;

import com.sun.tools.javac.main.Main.Result;

import org.junit.Before;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.junit.runners.JUnit4;

import java.util.List;

import javax.tools.JavaFileObject;

/**
* Tests for standard {@code @SuppressWarnings} suppression method.
*
* @author alexeagle@google.com (Alex Eagle)
*/
@RunWith(JUnit4.class)
public class SuppressWarningsTest {
  private ErrorProneTestCompiler compiler;

  @Before
  public void setUp() {
    compiler = new ErrorProneTestCompiler.Builder()
        .report(new ErrorProneScanner(new EnabledPredicate() {
          @Override
          public boolean isEnabled(Class<? extends BugChecker> check, BugPattern annotation) {
            return asList(DeadException.class, EmptyIfStatement.class, SelfAssignment.class)
                .contains(check);
          }
        }))
        .build();
  }

  @Test
  public void testNegativeCase() throws Exception {
    List<JavaFileObject> sources =
        compiler.fileManager().sources(getClass(), "SuppressWarningsNegativeCases.java");
    assertThat(compiler.compile(sources), is(Result.OK));
  }
}
TOP

Related Classes of com.google.errorprone.suppress.SuppressWarningsTest

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.