Skip to content

Commit 398c0aa

Browse files
committed
make test visible to infrastructure
1 parent 7e7a3d4 commit 398c0aa

File tree

1 file changed

+11
-2
lines changed

1 file changed

+11
-2
lines changed

nbcode/integration/test/unit/src/org/netbeans/modules/nbcode/integration/VerifyDebuggerPersistence.java renamed to nbcode/integration/test/unit/src/org/netbeans/modules/nbcode/integration/VerifyDebuggerPersistenceTest.java

Lines changed: 11 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,17 +19,26 @@
1919
package org.netbeans.modules.nbcode.integration;
2020

2121
import org.netbeans.api.debugger.Properties;
22+
import org.netbeans.junit.NbModuleSuite;
2223
import org.netbeans.junit.NbTestCase;
2324

2425
/**
2526
* Verify that debugger does not store persistently stuff that is set through VSCode client.
2627
*/
27-
public class VerifyDebuggerPersistence extends NbTestCase {
28+
public class VerifyDebuggerPersistenceTest extends NbTestCase {
2829

29-
public VerifyDebuggerPersistence(String name) {
30+
public VerifyDebuggerPersistenceTest(String name) {
3031
super(name);
3132
}
3233

34+
public static junit.framework.Test suite() {
35+
return NbModuleSuite.createConfiguration(VerifyDebuggerPersistenceTest.class).
36+
gui(false).
37+
enableModules(".*").
38+
honorAutoloadEager(true).
39+
suite();
40+
}
41+
3342
public void testBreakpointsPersistenceSetting() {
3443
boolean p = Properties.getDefault().getProperties("debugger").getProperties("persistence").getBoolean("breakpoints", true);
3544
assertFalse(p);

0 commit comments

Comments
 (0)