Package fitnesse.wiki

Examples of fitnesse.wiki.PageCrawlerImpl


  private WikiTestPage mockWikiTestPage() {
    WikiPage mock = mock(WikiPage.class);
    when(mock.isRoot()).thenReturn(true);
    when(mock.getName()).thenReturn("WikiPage");
    when(mock.getPageCrawler()).thenReturn(new PageCrawlerImpl(mock));
    return new WikiTestPage(mock, null);
  }
View Full Code Here

TOP

Related Classes of fitnesse.wiki.PageCrawlerImpl

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.