◐ Shell
reader mode source ↗
Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
File filter
Conversations
Jump to
Diff view
Apply and reload
Show whitespace
Diff view
Apply and reload
46 changes: 46 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,9 @@

<sonar.organization>utplsql</sonar.organization>
<sonar.host.url>https://sonarcloud.io</sonar.host.url>
</properties>

<licenses>
Expand Down Expand Up @@ -117,6 +120,49 @@
</resource>
</resources>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
Expand Down
5 changes: 5 additions & 0 deletions scripts/sql/simple/scripts/tests/APP.TEST_PKG_TEST_ME.pks
Original file line number Diff line number Diff line change
Expand Up @@ -84,5 +84,10 @@ CREATE OR REPLACE PACKAGE TEST_PKG_TEST_ME AS
-- %tags(cursor)
PROCEDURE TEST_PR_TEST_ME_CURSOR;

END;
/
4 changes: 0 additions & 4 deletions src/test/java/org/utplsql/api/TestRunnerIT.java
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
package org.utplsql.api;

import org.junit.jupiter.api.Disabled;
import org.junit.jupiter.api.Test;
import org.junit.jupiter.api.function.Executable;
import org.utplsql.api.compatibility.CompatibilityProxy;
Expand Down Expand Up @@ -65,7 +64,6 @@ void runWithManyReporters() throws SQLException {
/**
* This can only be tested on frameworks >= 3.0.3
*/
@Disabled
@Test
void failOnErrors() throws SQLException, InvalidVersionException {
Connection conn = getConnection();
@@ -82,8 +80,6 @@ void failOnErrors() throws SQLException, InvalidVersionException {

@Test
void runWithRandomExecutionOrder() throws SQLException {
CompatibilityProxy proxy = new CompatibilityProxy(getConnection());

new TestRunner()
.randomTestOrder(true)
.randomTestOrderSeed(123)
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
package org.utplsql.api.reporter;

import org.junit.jupiter.api.Disabled;
import org.junit.jupiter.api.Tag;
import org.junit.jupiter.api.Test;
import org.junit.jupiter.api.io.TempDir;
Expand All @@ -25,7 +24,6 @@ private void testFileExists(Path filePath) {
assertTrue(f.exists(), () -> "File " + f + " does not exist");
}

@Disabled("No idea why this ever worked")
@Test
void writeReporterAssetsTo() throws RuntimeException {

Expand Down
Loading
Toggle all file notes Toggle all file annotations