/** * This file is licensed under the University of Illinois/NCSA Open Source License. See LICENSE.TXT for details. */ package edu.illinois.codingspectator.ui.tests.introducefactory; import org.eclipse.jface.dialogs.IDialogConstants; import edu.illinois.codingspectator.ui.tests.RefactoringTest; /** * * This test tries to invoke an introduce factory from a wrong place. * * @author Mohsen Vakilian * */ public class T03 extends RefactoringTest { private static final String MENU_ITEM= "Introduce Factory..."; @Override protected String getTestFileName() { return "IntroduceFactoryTestFile"; } @Override protected void doExecuteRefactoring() { bot.selectElementToRefactor(getTestFileFullName(), 7, 19, 0); bot.invokeRefactoringFromMenu(MENU_ITEM); bot.clickButtons(IDialogConstants.OK_LABEL); } }