org.pitest.classpath.ProjectClassPaths Maven / Gradle / Ivy
/*
* Copyright 2011 Henry Coles
*
* 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 org.pitest.classpath;
import java.util.Collection;
import java.util.stream.Collectors;
import org.pitest.classinfo.ClassName;
import org.pitest.functional.FCollection;
public class ProjectClassPaths {
private final ClassPath classPath;
private final ClassFilter classFilter;
private final PathFilter pathFilter;
public ProjectClassPaths(final ClassPath classPath,
final ClassFilter classFilter, final PathFilter pathFilter) {
this.classPath = classPath;
this.classFilter = classFilter;
this.pathFilter = pathFilter;
}
public Collection code() {
return FCollection.filter(
this.classPath.getComponent(this.pathFilter.getCodeFilter())
.findClasses(this.classFilter.getCode()),
this.classFilter.getCode()).stream()
.map(ClassName::fromString)
.collect(Collectors.toList());
}
public Collection test() {
return FCollection.filter(
this.classPath.getComponent(this.pathFilter.getTestFilter())
.findClasses(this.classFilter.getTest()),
this.classFilter.getTest()).stream()
.map(ClassName::fromString)
.collect(Collectors.toList());
}
public ClassPath getClassPath() {
return this.classPath;
}
public ClassFilter getFilter() {
return this.classFilter;
}
}