Skip to content
Snippets Groups Projects
Commit 65e97fbf authored by cramakri's avatar cramakri
Browse files

MINOR: Formatted code.

SVN: 17562
parent 55fc64ad
No related branches found
No related tags found
No related merge requests found
......@@ -34,7 +34,8 @@ public class TabularDataHeatmapTest extends AbstractTabularDataGraphTest
File outputFile = getImageOutputFile();
TabularDataHeatmapConfiguration config =
new TabularDataHeatmapConfiguration("Test", new CodeAndLabel("WellName"), new CodeAndLabel("InfectionIndex"), 300, 200);
new TabularDataHeatmapConfiguration("Test", new CodeAndLabel("WellName"),
new CodeAndLabel("InfectionIndex"), 300, 200);
AbstractTabularDataGraph<TabularDataHeatmapConfiguration> graph =
new TabularDataHeatmap(config, getDatasetFileLines(), getOutputStream(outputFile));
assertSame(graph.tryXColumnNumber(), graph.tryYColumnNumber());
......@@ -50,7 +51,8 @@ public class TabularDataHeatmapTest extends AbstractTabularDataGraphTest
File outputFile = getImageOutputFile();
TabularDataHeatmapConfiguration config =
new TabularDataHeatmapConfiguration("Test", new CodeAndLabel("WellName"), new CodeAndLabel("BigNumber"), 300, 200);
new TabularDataHeatmapConfiguration("Test", new CodeAndLabel("WellName"),
new CodeAndLabel("BigNumber"), 300, 200);
AbstractTabularDataGraph<TabularDataHeatmapConfiguration> graph =
new TabularDataHeatmap(config, getBigNumberDatasetFileLines(),
getOutputStream(outputFile));
......@@ -67,7 +69,8 @@ public class TabularDataHeatmapTest extends AbstractTabularDataGraphTest
File outputFile = getImageOutputFile();
TabularDataHeatmapConfiguration config =
new TabularDataHeatmapConfiguration("Test", new CodeAndLabel("WellName"), new CodeAndLabel("Zero"), 300, 200);
new TabularDataHeatmapConfiguration("Test", new CodeAndLabel("WellName"),
new CodeAndLabel("Zero"), 300, 200);
AbstractTabularDataGraph<TabularDataHeatmapConfiguration> graph =
new TabularDataHeatmap(config, getBigNumberDatasetFileLines(),
getOutputStream(outputFile));
......@@ -85,7 +88,8 @@ public class TabularDataHeatmapTest extends AbstractTabularDataGraphTest
File outputFile = getImageOutputFile();
TabularDataHeatmapConfiguration config =
new TabularDataHeatmapConfiguration("Test", new CodeAndLabel("WellName"), new CodeAndLabel("Non-Existant"), 300, 200);
new TabularDataHeatmapConfiguration("Test", new CodeAndLabel("WellName"),
new CodeAndLabel("Non-Existant"), 300, 200);
AbstractTabularDataGraph<TabularDataHeatmapConfiguration> graph =
new TabularDataHeatmap(config, getDatasetFileLines(), getOutputStream(outputFile));
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment