From 80475e13a9b9c405bade572aaa23bf71eb91feef Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Roberto=20Casta=C3=B1eda=20Lozano?= Date: Tue, 16 Mar 2021 13:34:30 +0100 Subject: [PATCH] Remove template integration test --- .../com/sun/hotspot/igv/ApplicationTest.java | 32 ------------------- 1 file changed, 32 deletions(-) delete mode 100644 src/utils/IdealGraphVisualizer/application/src/test/java/com/sun/hotspot/igv/ApplicationTest.java diff --git a/src/utils/IdealGraphVisualizer/application/src/test/java/com/sun/hotspot/igv/ApplicationTest.java b/src/utils/IdealGraphVisualizer/application/src/test/java/com/sun/hotspot/igv/ApplicationTest.java deleted file mode 100644 index eb28fd4eb8bd4..0000000000000 --- a/src/utils/IdealGraphVisualizer/application/src/test/java/com/sun/hotspot/igv/ApplicationTest.java +++ /dev/null @@ -1,32 +0,0 @@ -package com.sun.hotspot.igv; - -import java.util.logging.Level; -import junit.framework.Test; -import org.netbeans.junit.NbModuleSuite; -import org.netbeans.junit.NbTestCase; - -public class ApplicationTest extends NbTestCase { - - public static Test suite() { - return NbModuleSuite.createConfiguration(ApplicationTest.class). - gui(false). - failOnMessage(Level.WARNING). // works at least in RELEASE71 - failOnException(Level.INFO). - enableClasspathModules(false). - clusters(".*"). - suite(); // RELEASE71+, else use NbModuleSuite.create(NbModuleSuite.createConfiguration(...)) - } - - public ApplicationTest(String n) { - super(n); - } - - public void testApplication() { - // pass if there are merely no warnings/exceptions - /* Example of using Jelly Tools (additional test dependencies required) with gui(true): - new ActionNoBlock("Help|About", null).performMenu(); - new NbDialogOperator("About").closeByButton(); - */ - } - -}