01: /* DdBehaviourCallbackHandler.java
02: *
03: * DDSteps - Data Driven JUnit Test Steps
04: * Copyright (C) 2005 Jayway AB
05: * www.ddsteps.org
06: *
07: * This library is free software; you can redistribute it and/or
08: * modify it under the terms of the GNU Lesser General Public
09: * License version 2.1 as published by the Free Software Foundation.
10: *
11: * This library is distributed in the hope that it will be useful,
12: * but WITHOUT ANY WARRANTY; without even the implied warranty of
13: * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14: * Lesser General Public License for more details.
15: *
16: * You should have received a copy of the GNU Lesser General Public
17: * License along with this library; if not, visit
18: * http://www.opensource.org/licenses/lgpl-license.php
19: */
20: package org.ddsteps.junit.behaviour;
21:
22: /**
23: * Contains the full set of methods needed by DdBehaviour to run your test case.
24: *
25: * @author adam
26: * @version $Id: DdBehaviourCallbackHandler.java,v 1.1 2006/01/29 21:25:39 adamskogman Exp $
27: */
28: public interface DdBehaviourCallbackHandler extends DdTestCaseHooks {
29:
30: /**
31: * Force setUp() to be public.
32: * <p>
33: * See junit.framework.TestCase#setUp()
34: *
35: * @throws Exception
36: */
37: public void setUp() throws Exception;
38:
39: /**
40: * Force tearDown() to be public.
41: * <p>
42: * See junit.framework.TestCase#tearDown()
43: *
44: * @throws Exception
45: */
46: public void tearDown() throws Exception;
47:
48: }
|