eu.stamp_project.utils.Utils Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of descartes Show documentation
Show all versions of descartes Show documentation
Mutation engine for PITest implementing extreme mutation operators
package eu.stamp_project.utils;
public class Utils {
public static boolean hasFlag(int value, int flag) {
return (value & flag) != 0;
}
public static boolean isConstructor(String name) { return name.equals(""); }
}