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 235895 - [junit] Show @Ignore text as tooltip in result window
Summary: [junit] Show @Ignore text as tooltip in result window
Status: NEW
Alias: None
Product: java
Classification: Unclassified
Component: JUnit (show other bugs)
Version: 7.4
Hardware: PC Windows 7
: P3 normal (vote)
Assignee: Theofanis Oikonomou
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2013-09-12 19:20 UTC by markiewb
Modified: 2013-09-12 19:20 UTC (History)
0 users

See Also:
Issue Type: ENHANCEMENT
Exception Reporter:


Attachments
Shows the proposal (54.88 KB, image/png)
2013-09-12 19:20 UTC, markiewb
Details

Note You need to log in before you can comment on or make changes to this bug.
Description markiewb 2013-09-12 19:20:17 UTC
Created attachment 140007 [details]
Shows the proposal

* execute the following test
public class FooTest
{
    @Test
    public void testValid()
    {}
    
    @Ignore("disabled for various purposes")
    @Test
    public void testIgnored()
    {}
}
* hover above the method testIgnored() in the test result window

EXPECTED: show the text of the @Ignore annotation