public void testPauseCount() {
PlotView testPlot = new PlotView.Builder(PlotterPlot.class).build();
testPlot.setManifestation(mockPlotViewManifestation);
Assert.assertFalse(testPlot.isPinned());
Pinnable pin1 = testPlot.createPin();
pin1.setPinned(true);
Assert.assertTrue(testPlot.isPinned());
Pinnable pin2 = testPlot.createPin();
pin2.setPinned(true);
Assert.assertTrue(testPlot.isPinned());
pin1.setPinned(false);
Assert.assertTrue(testPlot.isPinned());
pin2.setPinned(false);
Assert.assertFalse(testPlot.isPinned());
}