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.

View | Details | Raw Unified | Return to bug 141166
Collapse All | Expand All

(-)a/junit/test/unit/src/org/netbeans/modules/junit/ClassNameTextFieldTest.java (+4 lines)
Lines 91-96 Link Here
91
                new StringIntPair("a2.b", ClassNameTextField.STATUS_VALID),
91
                new StringIntPair("a2.b", ClassNameTextField.STATUS_VALID),
92
                new StringIntPair("A.b2", ClassNameTextField.STATUS_VALID),
92
                new StringIntPair("A.b2", ClassNameTextField.STATUS_VALID),
93
                new StringIntPair("a.b2", ClassNameTextField.STATUS_VALID),
93
                new StringIntPair("a.b2", ClassNameTextField.STATUS_VALID),
94
                 //test issue :141166
95
                new StringIntPair("Abs ", ClassNameTextField.STATUS_VALID),
94
        };
96
        };
95
        assertEquals(
97
        assertEquals(
96
                "check determined status if no text is passed",
98
                "check determined status if no text is passed",
Lines 133-138 Link Here
133
                new StringIntPair("a2.b", ClassNameTextField.STATUS_VALID),
135
                new StringIntPair("a2.b", ClassNameTextField.STATUS_VALID),
134
                new StringIntPair("A.b2", ClassNameTextField.STATUS_VALID),
136
                new StringIntPair("A.b2", ClassNameTextField.STATUS_VALID),
135
                new StringIntPair("a.b2", ClassNameTextField.STATUS_VALID),
137
                new StringIntPair("a.b2", ClassNameTextField.STATUS_VALID),
138
                 //test issue :141166
139
                new StringIntPair("Abs ", ClassNameTextField.STATUS_VALID),
136
        };
140
        };
137
        assertEquals(
141
        assertEquals(
138
                "check status if no parameter passed",
142
                "check status if no parameter passed",

Return to bug 141166