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 152274
Collapse All | Expand All

(-)a/junit/manifest.mf (-1 / +1 lines)
Lines 2-8 Link Here
2
OpenIDE-Module: org.netbeans.modules.junit/2
2
OpenIDE-Module: org.netbeans.modules.junit/2
3
OpenIDE-Module-Localizing-Bundle: org/netbeans/modules/junit/Bundle.properties
3
OpenIDE-Module-Localizing-Bundle: org/netbeans/modules/junit/Bundle.properties
4
OpenIDE-Module-Layer: org/netbeans/modules/junit/resources/layer.xml
4
OpenIDE-Module-Layer: org/netbeans/modules/junit/resources/layer.xml
5
OpenIDE-Module-Specification-Version: 2.28.1
5
OpenIDE-Module-Specification-Version: 2.28.2
6
OpenIDE-Module-Needs: javax.script.ScriptEngine.freemarker
6
OpenIDE-Module-Needs: javax.script.ScriptEngine.freemarker
7
AutoUpdate-Show-In-Client: false
7
AutoUpdate-Show-In-Client: false
8
8
(-)a/junit/nbproject/project.xml (+9 lines)
Lines 162-167 Link Here
162
                    </run-dependency>
162
                    </run-dependency>
163
                </dependency>
163
                </dependency>
164
                <dependency>
164
                <dependency>
165
                    <code-name-base>org.netbeans.modules.queries</code-name-base>
166
                    <build-prerequisite/>
167
                    <compile-dependency/>
168
                    <run-dependency>
169
                        <release-version>1</release-version>
170
                        <specification-version>1.13.1</specification-version>
171
                    </run-dependency>
172
                </dependency>
173
                <dependency>
165
                    <code-name-base>org.netbeans.modules.templates</code-name-base>
174
                    <code-name-base>org.netbeans.modules.templates</code-name-base>
166
                    <run-dependency>
175
                    <run-dependency>
167
                        <specification-version>1.0</specification-version>
176
                        <specification-version>1.0</specification-version>
(-)a/junit/src/org/netbeans/modules/junit/DefaultPlugin.java (+4 lines)
Lines 81-86 Link Here
81
import org.netbeans.api.project.Sources;
81
import org.netbeans.api.project.Sources;
82
import org.netbeans.api.project.libraries.Library;
82
import org.netbeans.api.project.libraries.Library;
83
import org.netbeans.api.project.libraries.LibraryManager;
83
import org.netbeans.api.project.libraries.LibraryManager;
84
import org.netbeans.api.queries.VisibilityQuery;
84
import org.netbeans.modules.junit.TestabilityResult.SkippedClass;
85
import org.netbeans.modules.junit.TestabilityResult.SkippedClass;
85
import org.netbeans.modules.junit.plugin.JUnitPlugin;
86
import org.netbeans.modules.junit.plugin.JUnitPlugin;
86
import org.netbeans.modules.junit.plugin.JUnitPlugin.CreateTestParam;
87
import org.netbeans.modules.junit.plugin.JUnitPlugin.CreateTestParam;
Lines 1783-1788 Link Here
1783
                    results.setAbborted();
1784
                    results.setAbborted();
1784
                    break;
1785
                    break;
1785
                }
1786
                }
1787
                if (!VisibilityQuery.getDefault().isVisible(childFileObj)) {
1788
                    continue;
1789
                }
1786
                results.combine(createTests(childFileObj,
1790
                results.combine(createTests(childFileObj,
1787
                                            testCreator,
1791
                                            testCreator,
1788
                                            templateParams,
1792
                                            templateParams,

Return to bug 152274