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 9c96f2a commit aff919cCopy full SHA for aff919c
src/main/java/org/utplsql/api/compatibility/CompatibilityProxy.java
@@ -155,6 +155,14 @@ public Version getUtPlsqlVersion() {
155
156
public Version getRealDbPlsqlVersion() { return realDbPlsqlVersion; }
157
158
+ public String getVersionDescription() {
159
+ if ( utPlsqlVersion != realDbPlsqlVersion ) {
160
+ return realDbPlsqlVersion.toString() + " (Assumed: " + utPlsqlVersion.toString();
161
+ } else {
162
+ return utPlsqlVersion.toString();
163
+ }
164
165
+
166
/**
167
* Returns a TestRunnerStatement compatible with the current framework
168
*
0 commit comments