File path: /jfreechart-1.0.10/tests/org/jfree/chart/renderer/category/junit/BoxAndWhiskerRendererTests.java | File path: /jfreechart-1.0.10/tests/org/jfree/chart/renderer/category/junit/BoxAndWhiskerRendererTests.java | |||
Method name: void testDrawWithNullQ1()
|
Method name: void testDrawWithNullMaxOutlier()
|
|||
Number of AST nodes: 8 | Number of AST nodes: 8 | |||
1 | try {↵ | 1 | try {↵ | |
2 | DefaultBoxAndWhiskerCategoryDataset dataset↵ | 2 | DefaultBoxAndWhiskerCategoryDataset dataset↵ | |
3 | = new DefaultBoxAndWhiskerCategoryDataset();↵ | 3 | = new DefaultBoxAndWhiskerCategoryDataset();↵ | |
4 | dataset.add(new BoxAndWhiskerItem(new Double(1.0), new Double(2.0),↵ | 4 | dataset.add(new BoxAndWhiskerItem(new Double(1.0), new Double(2.0),↵ | |
5 | null, new Double(4.0), new Double(0.5),↵ | 5 | new Double(3.0), new Double(4.0), new Double(0.5),↵ | |
6 | new Double(4.5), new Double(-0.5), new Double(5.5),↵ | 6 | new Double(4.5), new Double(-0.5), null,↵ | |
7 | null), "S1", "C1");↵ | 7 | new java.util.ArrayList()), "S1", "C1");↵ | |
8 | CategoryPlot plot = new CategoryPlot(dataset,↵ | 8 | CategoryPlot plot = new CategoryPlot(dataset,↵ | |
9 | new CategoryAxis("Category"), new NumberAxis("Value"),↵ | 9 | new CategoryAxis("Category"), new NumberAxis("Value"),↵ | |
10 | new BoxAndWhiskerRenderer());↵ | 10 | new BoxAndWhiskerRenderer());↵ | |
11 | ChartRenderingInfo info = new ChartRenderingInfo();↵ | 11 | ChartRenderingInfo info = new ChartRenderingInfo();↵ | |
12 | JFreeChart chart = new JFreeChart(plot);↵ | 12 | JFreeChart chart = new JFreeChart(plot);↵ | |
13 | /* BufferedImage image = */ chart.createBufferedImage(300, 200,↵ | 13 | /* BufferedImage image = */ chart.createBufferedImage(300, 200,↵ | |
14 | info);↵ | 14 | info);↵ | |
15 | success = true;↵ | 15 | success = true;↵ | |
16 | }↵ | 16 | }↵ | |
17 | catch (Exception e) {↵ | 17 | catch (Exception e) {↵ | |
18 | success = false;↵ | 18 | success = false;↵ | |
19 | } | 19 |
| |
See real code fragment | See real code fragment |
Number of common nesting structure subtrees | 1 |
Number of refactorable cases | 1 |
Number of non-refactorable cases | 0 |
Time elapsed for finding largest common nesting structure subtrees (ms) | 0.1 |
Clones location | Clones are declared in the same class |
Number of node comparisons | 64 |
Number of mapped statements | 8 |
Number of unmapped statements in the first code fragment | 0 |
Number of unmapped statements in the second code fragment | 0 |
Time elapsed for statement mapping (ms) | 7.4 |
Clone type | Type 2 |
ID | Statement | ID | Statement | |||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
2 | try | 2 | try | |||||||||||||||||
3 | DefaultBoxAndWhiskerCategoryDataset dataset = new DefaultBoxAndWhiskerCategoryDataset(); | 3 | DefaultBoxAndWhiskerCategoryDataset dataset = new DefaultBoxAndWhiskerCategoryDataset(); | |||||||||||||||||
4 | dataset.add(new BoxAndWhiskerItem(new Double(1.0), new Double(2.0), null, new Double(4.0), new Double(0.5), new Double(4.5), new Double(-0.5), new Double(5.5), null), "S1", "C1"); |
| 4 | dataset.add(new BoxAndWhiskerItem(new Double(1.0), new Double(2.0), new Double(3.0), new Double(4.0), new Double(0.5), new Double(4.5), new Double(-0.5), null, new java.util.ArrayList()), "S1", "C1"); | ||||||||||||||||
5 | CategoryPlot plot = new CategoryPlot(dataset, new CategoryAxis("Category"), new NumberAxis("Value"), new BoxAndWhiskerRenderer()); | 5 | CategoryPlot plot = new CategoryPlot(dataset, new CategoryAxis("Category"), new NumberAxis("Value"), new BoxAndWhiskerRenderer()); | |||||||||||||||||
6 | ChartRenderingInfo info = new ChartRenderingInfo(); | 6 | ChartRenderingInfo info = new ChartRenderingInfo(); | |||||||||||||||||
7 | JFreeChart chart = new JFreeChart(plot); | 7 | JFreeChart chart = new JFreeChart(plot); | |||||||||||||||||
8 | chart.createBufferedImage(300, 200, info); | 8 | chart.createBufferedImage(300, 200, info); | |||||||||||||||||
9 | success = true; | 9 | success = true; |
Row | Violation |
---|