/* * Copyright 2014 TWO SIGMA OPEN SOURCE, LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.twosigma.beaker.chart.xychart; import com.twosigma.beaker.chart.xychart.plotitem.Line; import com.twosigma.beaker.chart.xychart.plotitem.Points; import com.twosigma.beaker.jupyter.KernelManager; import com.twosigma.beaker.KernelTest; import org.assertj.core.api.Assertions; import org.junit.After; import org.junit.Before; import org.junit.Test; import java.math.BigInteger; import java.util.Arrays; public class NanoPlotTest { Line line; Points points; @Before public void initStubData() { BigInteger val1 = new BigInteger("12345678901234567891000"); BigInteger val2 = new BigInteger("12345678901234567892000"); points = new Points(); points.setX(Arrays.asList(val1, val2)); points.setY(Arrays.asList(2, 3)); line = new Line(); line.setX(Arrays.asList(val1, val1)); line.setY(Arrays.asList(2, 3)); KernelManager.register(new KernelTest()); } @After public void tearDown() throws Exception { KernelManager.register(null); } @Test public void createNanoPlotByEmptyConstructor_nanoPlotHasGraphicsListIsEmpty() { //when NanoPlot nanoPlot = new NanoPlot(); //then Assertions.assertThat(nanoPlot.getGraphics().size()).isEqualTo(0); } @Test public void addPointsToNanoPlot_nanoPlotHasGraphicsListSizeIsOne() { NanoPlot nanoPlot = new NanoPlot(); //when nanoPlot.add(points); //then Assertions.assertThat(nanoPlot.getGraphics().size()).isEqualTo(1); } @Test public void addLineToNanoPlot_nanoPlotHasGraphicsListSizeIsOne() { NanoPlot nanoPlot = new NanoPlot(); //when nanoPlot.add(line); //then Assertions.assertThat(nanoPlot.getGraphics().size()).isEqualTo(1); } @Test public void addPointsAndLineToNanoPlot_nanoPlotHasGraphicsListSizeIsTwo() { NanoPlot nanoPlot = new NanoPlot(); //when nanoPlot.add(points); nanoPlot.add(line); //then Assertions.assertThat(nanoPlot.getGraphics().size()).isEqualTo(2); } }