/* DdTestCase.java
*
* DDSteps - Data Driven JUnit Test Steps
* Copyright (C) 2005 Jayway AB
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License version 2.1 as published by the Free Software Foundation.
*
* This library 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 General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, visit
* http://www.opensource.org/licenses/lgpl-license.php
*/
package org.ddsteps;
/**
* This is a basic, datadriven testcase base class. It is "self-driven", i.e.
* knows about its datadrivenness, and will call out to the DataDriven Behaviour
* to be run.
* <p>
* It also uses itself as callback handler, and therefore implements
* DdBehaviourCallbackHandler directly.
*
* @author Adam Skogman
* @deprecated Use {@link DDStepsTestCase} instead.
* @version $Id: DdTestCase.java,v 1.5 2006/04/05 18:04:06 adamskogman Exp $
*/
public abstract class DdTestCase extends DDStepsTestCase {
}
|