Package com.commafeed.backend.service

Examples of com.commafeed.backend.service.FeedSubscriptionService


    testOpmlVersion("/opml/opml_noversion.xml");
  }

  private void testOpmlVersion(String fileName) throws IOException {
    FeedCategoryDAO feedCategoryDAO = Mockito.mock(FeedCategoryDAO.class);
    FeedSubscriptionService feedSubscriptionService = Mockito.mock(FeedSubscriptionService.class);
    CacheService cacheService = Mockito.mock(CacheService.class);
    User user = Mockito.mock(User.class);

    String xml = IOUtils.toString(getClass().getResourceAsStream(fileName));
View Full Code Here

TOP

Related Classes of com.commafeed.backend.service.FeedSubscriptionService

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.