/** * Copyright (c) 2005-2011 by Appcelerator, Inc. All Rights Reserved. * Licensed under the terms of the Eclipse Public License (EPL). * Please see the license.txt included with this distribution for details. * Any modifications to this file must keep this entire header intact. */ /* * Created on Mar 23, 2005 * * @author Fabio Zadrozny */ package org.python.pydev.editor.correctionassist; import junit.framework.TestCase; import org.eclipse.jface.text.BadLocationException; /** * @author Fabio Zadrozny */ public class PythonCorrectionProcessorTest extends TestCase { public static void main(String[] args) { junit.textui.TestRunner.run(PythonCorrectionProcessorTest.class); } /* * @see TestCase#setUp() */ protected void setUp() throws Exception { super.setUp(); } /* * @see TestCase#tearDown() */ protected void tearDown() throws Exception { super.tearDown(); } public void testGetOverrideProps() throws BadLocationException { } }