Package com.google.dataconnector.util

Examples of com.google.dataconnector.util.LocalConf


  @Override
  protected void setUp() throws Exception {
    super.setUp();

    localConf = new LocalConf();
    localConf.setRulesFile(TEST_FILE);

    frameSender = createMock(FrameSender.class);
    fileHandle = EasyMock.createMock(File.class);
    systemUtil = EasyMock.createMock(SystemUtil.class);
View Full Code Here


   * Creates a configuration beans from the fake hardcoded XML files.
   */
  public FakeLocalConfGenerator() {

    final FeedServerEntry configEntry = new FeedServerEntry(CONFIG_XML);
    fakeLocalConf = new LocalConf();
    final ContentUtil contentUtil = new ContentUtil();
    try {
      contentUtil.fillBean((OtherContent) configEntry.getContent(), fakeLocalConf);
    } catch (IllegalArgumentException e) {
      throw new RuntimeException(e);
View Full Code Here

TOP

Related Classes of com.google.dataconnector.util.LocalConf

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.