Examples of PlotView


Examples of gov.nasa.arc.mct.fastplot.bridge.PlotView

    };
  }
 
  @Test(dataProvider="plotViewFactoryData")
  public void testCreatePlot(PlotSettings settings, long currentTime, long expectedMinTime, long expectedMaxTime, boolean pinned) {
    PlotView plotView = PlotViewFactory.createPlot(settings, currentTime, plotManifestation, 1, null, labelingAlgorithm, PlotConstants.DEFAULT_TIME_SYSTEM);
    Assert.assertEquals(plotView.getTimeAxisUserPin().isPinned(), pinned);
    Assert.assertEquals(plotView.getMinTime(), expectedMinTime);
    Assert.assertEquals(plotView.getMaxTime(), expectedMaxTime);   
  }
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.