01: /* CachingExcelDataLoader.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.support;
22:
23: /**
24: * Loads Excel files by the same name as the testcase, in the same package,
25: * using the testcase's own classloader.
26: * <p>
27: * Use this ONLY from Spring if you are not using a custom DataSetLoader. If you
28: * are not using Spring, use (@link org.ddsteps.data.support.DataLoaderFactory)
29: * directly.
30: *
31: * @author adamskogman
32: * @version $Id: CachingExcelDataLoader.java,v 1.1 2006/03/10 15:30:34 adamskogman Exp $
33: */
34: public class CachingExcelDataLoader extends DataLoaderProxySupport {
35:
36: /**
37: * No-args.
38: *
39: * @see DataLoaderFactory#getCachingExcelDataLoader()
40: */
41: public CachingExcelDataLoader() {
42: super(DataLoaderFactory.getCachingExcelDataLoader());
43: }
44: }
|