1   /***
2    Copyright (C) 2005 The Java Community
3   
4    This program is free software; you can redistribute it and/or modify  it under
5    the terms of the GNU General Public License as published by  the Free Software
6    Foundation; either version 2 of the License, or  (at your option) any later
7    version.
8   
9    This program is distributed in the hope that it will be useful,  but WITHOUT
10   ANY WARRANTY; without even the implied warranty of  MERCHANTABILITY or FITNESS
11   FOR A PARTICULAR PURPOSE. See the  GNU General Public License for more details.
12  
13   You should have received a copy of the GNU General Public License  along with
14   this program; if not, write to the Free Software  Foundation, Inc., 59 Temple
15   Place, Suite 330, Boston, MA 02111-1307 USA.
16  
17   */
18  package org.bejug.javacareers.feeder.common;
19  
20  import org.springframework.test.AbstractDependencyInjectionSpringContextTests;
21  
22  /***
23   * @author Stephan (last modified by $Author: ge0ffrey $)
24   * @version $Revision: 1.4 $ - $Date: 2005/07/20 11:05:24 $
25   */
26  public abstract class AbstractSpringContextTests extends AbstractDependencyInjectionSpringContextTests {
27  
28      /***
29       * Returns a list of spring application contexts.
30       *
31       * @return the applicationContext for our application.
32       */
33      protected String[] getConfigLocations() {
34          return new String[]{"/org/bejug/javacareers/applicationContext-test.xml", "/org/bejug/javacareers/applicationContext-feeder.xml"};
35      }
36  }
37  
38  /***
39   * $Log: AbstractSpringContextTests.java,v $
40   * Revision 1.4  2005/07/20 11:05:24  ge0ffrey
41   * JAVACAREERS-137
42   *
43   * Revision 1.3  2005/06/29 09:00:25  psong09
44   * comment component updated
45   *
46   * Revision 1.2  2005/06/09 08:19:03  bejug_cc
47   * Fix initial import
48   *
49   * Revision 1.4  2005/06/06 14:13:23  bbr
50   * lowercased context files
51   *
52   * Revision 1.3  2005/06/06 13:51:54  bbr
53   * extracted feeder from test
54   *
55   * Revision 1.2  2005/05/31 13:30:49  bbr
56   * reorganized contexts for tests
57   *
58   * Revision 1.1  2005/05/23 17:38:13  sja
59   * Package move to org.bejug.javacareers.feeder
60   *
61   * Revision 1.1  2005/05/23 15:42:00  bbr
62   * added weight to lucene
63   *
64   * Revision 1.3  2005/05/18 11:49:51  bavo_jcs
65   * no message
66   *
67   * Revision 1.2  2005/05/10 11:32:50  bavo_jcs
68   * integrated with services from JavaCareers Web
69   *
70   * Revision 1.1.1.1  2005/04/26 14:13:51  stephan_janssen
71   * Initial import
72   *
73   * Revision 1.1.1.1  2005/04/26 12:58:36  sja
74   * Initial Release
75   *
76   * Revision 1.1.1.1  2005/04/26 12:51:31  sja
77   * Initial Release
78   *
79   */