Examples of DocumentListOptionsDisplay


Examples of org.zanata.webtrans.client.view.DocumentListOptionsDisplay

                editorOptionsPresenter.getDisplay().asWidget());
    }

    @Test
    public void setOptionsViewDocumentList() {
        DocumentListOptionsDisplay widget =
                mock(DocumentListOptionsDisplay.class);
        when(documentListOptionsPresenter.getDisplay()).thenReturn(widget);
        presenter.onBind();
        presenter.setOptionsView(MainView.Documents);
View Full Code Here

Examples of org.zanata.webtrans.client.view.DocumentListOptionsDisplay

        verify(editorOptionsPresenter).loadDefaultOptions();
    }

    @Test
    public void onLoadDefaultOptionsDocument() {
        DocumentListOptionsDisplay widget =
                mock(DocumentListOptionsDisplay.class);
        when(documentListOptionsPresenter.getDisplay()).thenReturn(widget);

        presenter.onBind();
        presenter.setOptionsView(MainView.Documents);
View Full Code Here

Examples of org.zanata.webtrans.client.view.DocumentListOptionsDisplay

        verify(editorOptionsPresenter).persistOptionChange();
    }

    @Test
    public void persistOptionChangeDocument() {
        DocumentListOptionsDisplay widget =
                mock(DocumentListOptionsDisplay.class);
        when(documentListOptionsPresenter.getDisplay()).thenReturn(widget);

        presenter.onBind();
        presenter.setOptionsView(MainView.Documents);
View Full Code Here

Examples of org.zanata.webtrans.client.view.DocumentListOptionsDisplay

        verify(editorOptionsPresenter).loadOptions();
    }

    @Test
    public void loadOptionsDocument() {
        DocumentListOptionsDisplay widget =
                mock(DocumentListOptionsDisplay.class);
        when(documentListOptionsPresenter.getDisplay()).thenReturn(widget);

        presenter.onBind();
        presenter.setOptionsView(MainView.Documents);
View Full Code Here

Examples of org.zanata.webtrans.client.view.DocumentListOptionsDisplay

        verify(editorOptionsPresenter).loadDefaultOptions();
    }

    @Test
    public void loadDefaultOptionsDocument() {
        DocumentListOptionsDisplay widget =
                mock(DocumentListOptionsDisplay.class);
        when(documentListOptionsPresenter.getDisplay()).thenReturn(widget);

        presenter.onBind();
        presenter.setOptionsView(MainView.Documents);
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.