guru.nidi.codeassert.junit.CodeAssertMatchers Maven / Gradle / Ivy
/*
* Copyright © 2015 Stefan Niederhauser ([email protected])
*
* 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 guru.nidi.codeassert.junit;
import guru.nidi.codeassert.AnalyzerResult;
import guru.nidi.codeassert.checkstyle.CheckstyleMatcher;
import guru.nidi.codeassert.checkstyle.CheckstyleResult;
import guru.nidi.codeassert.dependency.*;
import guru.nidi.codeassert.findbugs.FindBugsMatcher;
import guru.nidi.codeassert.findbugs.FindBugsResult;
import guru.nidi.codeassert.jacoco.CoverageMatcher;
import guru.nidi.codeassert.jacoco.JacocoResult;
import guru.nidi.codeassert.pmd.*;
import org.hamcrest.Matcher;
public final class CodeAssertMatchers {
private CodeAssertMatchers() {
}
public static Matcher matchesRules() {
return new DependencyResultMatcher(false, false);
}
public static Matcher matchesRulesExactly() {
return new DependencyResultMatcher(true, true);
}
public static Matcher matchesRulesIgnoringNonExisting() {
return new DependencyResultMatcher(false, true);
}
public static Matcher matchesRulesIgnoringUndefined() {
return new DependencyResultMatcher(true, false);
}
public static Matcher hasNoCycles() {
return new DependencyCycleMatcher();
}
public static Matcher hasNoBugs() {
return new FindBugsMatcher();
}
public static Matcher hasNoPmdViolations() {
return new PmdMatcher();
}
public static Matcher hasNoCodeDuplications() {
return new CpdMatcher();
}
public static Matcher hasNoCheckstyleIssues() {
return new CheckstyleMatcher();
}
public static > Matcher hasNoUnusedActions() {
return new UnusedActionsMatcher<>();
}
public static Matcher hasEnoughCoverage() {
return new CoverageMatcher();
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy