01: /* RawExcelDataLoader.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:
21: package org.ddsteps.data.excel;
22:
23: import org.ddsteps.data.support.DataLoaderFactory;
24: import org.ddsteps.data.support.DataLoaderProxySupport;
25:
26: /**
27: * DEPRECATED: WILL BE REMOVED IN 1.2
28: *
29: * Loads Excel files by the same name as the testcase, in the same package,
30: * using the testcase's own classloader.
31: *
32: * @author adam
33: * @version $Id: RawExcelDataLoader.java,v 1.1 2005/08/25 08:34:21 adamskogman
34: * Exp $
35: * @deprecated Use (@link org.ddsteps.data.excel.CachingExcelDataLoader)
36: */
37: public class RawExcelDataLoader extends DataLoaderProxySupport {
38:
39: /**
40: *
41: */
42: public RawExcelDataLoader() {
43: super(DataLoaderFactory.getCachingExcelDataLoader());
44: }
45:
46: }
|