01: /* DdTestCase.java
02: *
03: * DDSteps - Data Driven JUnit Test Steps
04: * Copyright (C) 2005 Jayway AB
05: *
06: * This library is free software; you can redistribute it and/or
07: * modify it under the terms of the GNU Lesser General Public
08: * License version 2.1 as published by the Free Software Foundation.
09: *
10: * This library is distributed in the hope that it will be useful,
11: * but WITHOUT ANY WARRANTY; without even the implied warranty of
12: * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13: * Lesser General Public License for more details.
14: *
15: * You should have received a copy of the GNU Lesser General Public
16: * License along with this library; if not, visit
17: * http://www.opensource.org/licenses/lgpl-license.php
18: */
19: package org.ddsteps;
20:
21: /**
22: * This is a basic, datadriven testcase base class. It is "self-driven", i.e.
23: * knows about its datadrivenness, and will call out to the DataDriven Behaviour
24: * to be run.
25: * <p>
26: * It also uses itself as callback handler, and therefore implements
27: * DdBehaviourCallbackHandler directly.
28: *
29: * @author Adam Skogman
30: * @deprecated Use {@link DDStepsTestCase} instead.
31: * @version $Id: DdTestCase.java,v 1.5 2006/04/05 18:04:06 adamskogman Exp $
32: */
33: public abstract class DdTestCase extends DDStepsTestCase {
34:
35: }
|