Hii
I am Kevin.
Is there any way to skip some methods in Pitest?
For example:-
```
public Set<DetailAST> getMethodCalls() {
return Collections.unmodifiableSet(methodCalls);
}
```
The code is mutated as
```
public Set<DetailAST> getMethodCalls() {
return methodCalls;
}
```
How can we instruct Pitest to not mutate Collections.unmodifiableSet?