/* * Copyright (C) 2006, 2007 Dennis Hunziker, Ueli Kistler * Copyright (C) 2007 Reto Schuettel, Robin Stocker */ package org.python.pydev.refactoring.tests.codegenerator.constructorfield; import java.io.File; import junit.framework.Test; import org.python.pydev.refactoring.tests.core.AbstractIOTestSuite; import org.python.pydev.refactoring.tests.core.IInputOutputTestCase; public class ConstructorFieldTestSuite extends AbstractIOTestSuite { public ConstructorFieldTestSuite(String name) { super(name); } public static Test suite() { String testdir = "tests" + File.separator + "python" + File.separator + "codegenerator" + File.separator + "constructorfield"; ConstructorFieldTestSuite testSuite = new ConstructorFieldTestSuite("Constructor Field"); testSuite.createTests(testdir); return testSuite; } @Override protected IInputOutputTestCase createTestCase(String testCaseName) { return new ConstructorFieldTestCase(testCaseName); } }