Package gov.nasa.arc.mct.fastplot.bridge

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


  }
 
  @Test
  public void testAttachPlotLine() {
    // Attaching a plot line should update the color of the legend to match
    AbstractPlotLine mockPlotLine = Mockito.mock(AbstractPlotLine.class);
    Mockito.when(mockPlotLine.getColor()).thenReturn(TEST_COLOR);   
    Assert.assertFalse(containsColor(drawComponent(view), TEST_COLOR));   
    view.attachPlotLine(mockPlotLine);
    Assert.assertTrue (containsColor(drawComponent(view), TEST_COLOR));
  }
View Full Code Here

TOP

Related Classes of gov.nasa.arc.mct.fastplot.bridge.AbstractPlotLine

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.