示例#1
0
  /**
   * Test load velo.
   *
   * @throws Exception the exception
   */
  @Test
  public void testLoadVelo() throws Exception {
    ILoader loader = new VeloDataLoader();
    Loaders loaders = new Loaders(loader);

    loaders.load();
  }
示例#2
0
  /**
   * Test load fables.
   *
   * @throws Exception the exception
   */
  @Test
  public void testLoadFables() throws Exception {
    ILoader loader = new FablesLoader();
    Loaders loaders = new Loaders(loader);

    loaders.load();
    Assert.assertFalse(loaders.hasErrors());
  }
示例#3
0
  /**
   * Test load emballage.
   *
   * @throws Exception the exception
   */
  @Test
  public void testLoadEmballage() throws Exception {
    ILoader loader = new EmballageDataLoader();
    Loaders loaders = new Loaders(loader);

    loaders.load();
    Assert.assertFalse(loaders.hasErrors());
  }
示例#4
0
  /**
   * Test load tramway.
   *
   * @throws Exception the exception
   */
  @Test
  public void testLoadTramway() throws Exception {
    ILoader loader = new TramwayDataLoader();
    Loaders loaders = new Loaders(loader);

    loaders.load();
    Assert.assertFalse(loaders.hasErrors());
  }