Examples of onSearchLine()


Examples of com.google.collide.client.editor.search.SearchTask.SearchTaskExecutor.onSearchLine()

    expect(
        executor.onSearchLine(EasyMock.anyObject(Line.class), EasyMock.anyInt(), EasyMock.eq(true)))
        .andReturn(true).times(2);
    expect(executor.onSearchLine(viewport.getBottomLine(), 4, true)).andReturn(true);

    expect(executor.onSearchLine(
        EasyMock.anyObject(Line.class), EasyMock.anyInt(), EasyMock.eq(false)))
        .andReturn(true).times(7);
    expect(executor.onSearchLine(viewport.getTopLine(), 0, false)).andReturn(true);
    replay(executor);
View Full Code Here

Examples of com.google.collide.client.editor.search.SearchTask.SearchTaskExecutor.onSearchLine()

    expect(executor.onSearchLine(viewport.getBottomLine(), 4, true)).andReturn(true);

    expect(executor.onSearchLine(
        EasyMock.anyObject(Line.class), EasyMock.anyInt(), EasyMock.eq(false)))
        .andReturn(true).times(7);
    expect(executor.onSearchLine(viewport.getTopLine(), 0, false)).andReturn(true);
    replay(executor);

    task.searchDocumentStartingAtLine(executor, null, SearchDirection.DOWN, lineInfo);
    verify(executor);
  }
View Full Code Here

Examples of com.google.collide.client.editor.search.SearchTask.SearchTaskExecutor.onSearchLine()

  public void testNoWrapWorks() {
    ViewportModel viewport = createMockViewport(document, 5);
    SearchTask task = new SearchTask(document, viewport, scheduler);

    SearchTaskExecutor executor = EasyMock.createMock(SearchTaskExecutor.class);
    expect(executor.onSearchLine(viewport.getBottomLine(), 4, true)).andReturn(true);
    expect(
        executor.onSearchLine(EasyMock.anyObject(Line.class), EasyMock.anyInt(), EasyMock.eq(true)))
        .andReturn(true).times(3);
    expect(executor.onSearchLine(viewport.getTopLine(), 0, true)).andReturn(true);
    replay(executor);
View Full Code Here

Examples of com.google.collide.client.editor.search.SearchTask.SearchTaskExecutor.onSearchLine()

    SearchTask task = new SearchTask(document, viewport, scheduler);

    SearchTaskExecutor executor = EasyMock.createMock(SearchTaskExecutor.class);
    expect(executor.onSearchLine(viewport.getBottomLine(), 4, true)).andReturn(true);
    expect(
        executor.onSearchLine(EasyMock.anyObject(Line.class), EasyMock.anyInt(), EasyMock.eq(true)))
        .andReturn(true).times(3);
    expect(executor.onSearchLine(viewport.getTopLine(), 0, true)).andReturn(true);
    replay(executor);

    task.setShouldWrapDocument(false);
View Full Code Here

Examples of com.google.collide.client.editor.search.SearchTask.SearchTaskExecutor.onSearchLine()

    SearchTaskExecutor executor = EasyMock.createMock(SearchTaskExecutor.class);
    expect(executor.onSearchLine(viewport.getBottomLine(), 4, true)).andReturn(true);
    expect(
        executor.onSearchLine(EasyMock.anyObject(Line.class), EasyMock.anyInt(), EasyMock.eq(true)))
        .andReturn(true).times(3);
    expect(executor.onSearchLine(viewport.getTopLine(), 0, true)).andReturn(true);
    replay(executor);

    task.setShouldWrapDocument(false);
    task.searchDocument(executor, null, SearchDirection.UP);
    verify(executor);
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.