All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.evosuite.instrumentation.coverage.MethodInstrumentation Maven / Gradle / Ivy

The newest version!
/**
 * Copyright (C) 2010-2018 Gordon Fraser, Andrea Arcuri and EvoSuite
 * contributors
 *
 * This file is part of EvoSuite.
 *
 * EvoSuite is free software: you can redistribute it and/or modify it
 * under the terms of the GNU Lesser General Public License as published
 * by the Free Software Foundation, either version 3.0 of the License, or
 * (at your option) any later version.
 *
 * EvoSuite is distributed in the hope that it will be useful, but
 * WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
 * Lesser Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public
 * License along with EvoSuite. If not, see .
 */
/**
 * 
 */
package org.evosuite.instrumentation.coverage;

import org.objectweb.asm.tree.MethodNode;

/**
 * An interface which criteria (like defUse, concurrency, LCSAJs) can use to
 * instrument the code of methods
 * 
 * @author Sebastian Steenbuck
 */
public interface MethodInstrumentation {

	/**
	 * 

* analyze *

* * @param mn * the ASM Node of the method * @param className * the name of current class * @param methodName * the name of the current method. This name includes the * description of the method and is therefore unique per class. * @param access * the access of the current method (see * org.objectweb.asm.ClassAdapter#visitMethod(int access, String * name, String descriptor, String signature, String[] * exceptions)) */ public void analyze(ClassLoader classLoader, MethodNode mn, String className, String methodName, int access); /** * If this method returns true, the analyze method is also called on public * static void main() methods * * @return a boolean. */ public boolean executeOnMainMethod(); /** * if this method returns true the analyze method is also called on methods * which are excluded in CFGMethodAdapter.EXCLUDE * * @return a boolean. */ public boolean executeOnExcludedMethods(); }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy