Package org.gradle.api.internal.tasks.testing.filter

Examples of org.gradle.api.internal.tasks.testing.filter.TestSelectionMatcher


    private static class SelectedTestsFilter implements IMethodInterceptor {

        private final TestSelectionMatcher matcher;

        public SelectedTestsFilter(Set<String> includedTests) {
            matcher = new TestSelectionMatcher(includedTests);
        }
View Full Code Here


    private static class MethodNameFilter extends org.junit.runner.manipulation.Filter {

        private final TestSelectionMatcher matcher;

        public MethodNameFilter(Iterable<String> includedTests) {
            matcher = new TestSelectionMatcher(includedTests);
        }
View Full Code Here

TOP

Related Classes of org.gradle.api.internal.tasks.testing.filter.TestSelectionMatcher

Copyright © 2018 www.massapicom. 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.