This Bugzilla instance is a read-only archive of historic NetBeans bug reports. To report a bug in NetBeans please follow the project's instructions for reporting issues.

Bug 240210 - Code Coverage table columns cannot be resized
Summary: Code Coverage table columns cannot be resized
Status: REOPENED
Alias: None
Product: contrib
Classification: Unclassified
Component: Codecoverage (show other bugs)
Version: 7.4
Hardware: PC Windows 7
: P3 normal with 1 vote (vote)
Assignee: Martin Schovanek
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2014-01-10 11:32 UTC by gualtiero65
Modified: 2014-07-25 10:08 UTC (History)
1 user (show)

See Also:
Issue Type: DEFECT
Exception Reporter:


Attachments
IDE log (645.62 KB, text/plain)
2014-01-10 11:32 UTC, gualtiero65
Details
Code Coverage window (430.41 KB, image/jpeg)
2014-01-10 11:33 UTC, gualtiero65
Details

Note You need to log in before you can comment on or make changes to this bug.
Description gualtiero65 2014-01-10 11:32:27 UTC
The columns in the Code Coverage table cannot be resized so information in column 1 (Filename) cannot be fully visible.
The other columns size is unnecessary big.

Product Version = NetBeans IDE 7.4 (Build 201310111528)
Operating System = Windows 7 version 6.1 running on amd64
Java; VM; Vendor = 1.7.0_45
Runtime = Java HotSpot(TM) 64-Bit Server VM 24.45-b08
Comment 1 gualtiero65 2014-01-10 11:32:43 UTC
Created attachment 143788 [details]
IDE log
Comment 2 gualtiero65 2014-01-10 11:33:49 UTC
Created attachment 143789 [details]
Code Coverage window
Comment 3 gualtiero65 2014-01-10 12:21:33 UTC
I'm using JaCoco on a maven module (belonging to a multi-module project)

POM fragment:

<plugin>
                <groupId>org.jacoco</groupId>
                <artifactId>jacoco-maven-plugin</artifactId>
                <version>0.6.3.201306030806</version>
                <configuration>
                    <append>false</append>
                    <skip>${skipTests}</skip>
                </configuration>
                <executions>
                                        
                    <!--Setup agent for class instrumenting-->
                    <execution>
                        <id>pre-unit-test</id>
                        <goals>
                            <goal>prepare-agent</goal>
                        </goals>
                    </execution>
                    
                    <!--Generate report for unit tests-->
                    <execution>
                        <id>post-unit-test</id>
                        <phase>test</phase>
                        <goals>
                            <goal>report</goal>
                        </goals>
                    </execution>
                    
                    <!--Generate merged report for unit and integration tests-->
                    <execution>
                        <id>post-integration-test</id>
                        <phase>post-integration-test</phase>
                        <goals>
                            <goal>report</goal>
                        </goals>
                    </execution>
                </executions>
            </plugin>
Comment 4 Marian Mirilovic 2014-01-13 11:36:48 UTC
Please report to :
https://github.com/jonathanlermitage/tikione-jacocoverage/issues
Comment 5 gualtiero65 2014-01-15 12:59:41 UTC
(In reply to Marian Mirilovic from comment #4)
> Please report to :
> https://github.com/jonathanlermitage/tikione-jacocoverage/issues

I'm not using the TikiOne JaCoCo plugin because it does not support Maven projects. It is not even installed in my configuration.

I believe this is a NetBeans problem because CodeCoverage NetBeans support should work on maven-jacoco projects.

See https://blogs.oracle.com/geertjan/entry/code_coverage_for_maven_in
Comment 6 Milos Kleint 2014-02-05 08:39:07 UTC
the UI is not handled by the maven support. reassigning
Comment 7 DanSalt 2014-07-25 10:08:13 UTC
Same issue here using the recommended Maven Cobertura Plugin.

Product Version: NetBeans IDE 8.0 (Build 201403101706)
Updates: NetBeans IDE is updated to version NetBeans 8.0 Patch 2
Java: 1.7.0_51; Java HotSpot(TM) 64-Bit Server VM 24.51-b03
Runtime: Java(TM) SE Runtime Environment 1.7.0_51-b13

It would appear that the whole UI component is read-only. It's also not possible to double-click on the file to navigate to the file. So without resize or double-click, it's impossible to determine which file I need to open.