1   /*
2    * Copyright (c) 2005 Your Corporation. All Rights Reserved.
3    */
4   package org.bejug.javacareers.jobs.view.jsf.model;
5   
6   import java.util.ArrayList;
7   
8   import org.bejug.javacareers.jobs.common.AbstractSpringContextTests;
9   
10  /***
11   * @author Stephan Janssen (last modified by $Author: psong09 $)
12   * @version $Revision: 1.4 $ - $Date: 2005/08/30 13:07:48 $
13   */
14  public class JobOfferDataTests extends AbstractSpringContextTests {
15  
16      /***
17       *
18       */
19      public void testGetJobService() {
20          JobOfferData jobOfferData = new JobOfferData();
21  
22          JobOfferData.setJobOffers(new ArrayList());
23  
24          assertNotNull(jobOfferData);
25  
26          assertNotNull(jobOfferData.getJobOffers());
27      }
28  }
29  
30  /***
31   * $Log: JobOfferDataTests.java,v $
32   * Revision 1.4  2005/08/30 13:07:48  psong09
33   * renamed author: psong09
34   *
35   * Revision 1.3  2005/06/29 09:00:27  psong09
36   * comment component updated
37   *
38   * Revision 1.2  2005/06/09 08:19:04  bejug_cc
39   * Fix initial import
40   *
41   * Revision 1.4  2005/05/12 08:23:55  ssc
42   * Checkstyle errors
43   *
44   * Revision 1.3  2005/05/07 09:11:34  sja
45   * Corrected test.
46   *
47   * Revision 1.2  2005/05/01 17:36:44  sja
48   * Added getJobService() assertion to test.
49   *
50   * Revision 1.1  2005/05/01 14:40:52  sja
51   * Initial Import.
52   *
53   *
54   */