We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5a7053a commit 7b5a90bCopy full SHA for 7b5a90b
2 files changed
PlsqlDeveloperUtPlsqlPlugin/PlsqlDeveloperUtPlsqlPlugin/PlsqlDeveloperUtPlsqlPlugin.cs
@@ -136,6 +136,9 @@ public static void OnActivate()
136
137
createPopupItem(pluginId, PluginPopupIndex, "Run utPLSQL Test", "PACKAGE BODY");
138
createPopupItem(pluginId, PluginPopupIndexWithCoverage, "Run Code Coverage", "PACKAGE BODY");
139
+
140
+ createPopupItem(pluginId, PluginPopupIndex, "Run utPLSQL Test", "PROCEDURE");
141
+ createPopupItem(pluginId, PluginPopupIndexWithCoverage, "Run Code Coverage", "PROCEDURE");
142
}
143
144
[DllExport("CanClose", CallingConvention = CallingConvention.Cdecl)]
PlsqlDeveloperUtPlsqlPlugin/utPLSQL.UI/TestRunnerWindow.cs
@@ -287,6 +287,8 @@ private static List<string> GetPath(string type, string owner, string name, stri
287
return new List<string> { name };
288
case "PACKAGE":
289
return new List<string> { $"{owner}.{name}" };
290
+ case "PACKAGE BODY":
291
+ return new List<string> { $"{owner}.{name}" };
292
case "PROCEDURE":
293
return new List<string> { $"{owner}.{name}.{procedure}" };
294
default:
0 commit comments