Skip to content

Commit

Permalink
Disable new test classes
Browse files Browse the repository at this point in the history
  • Loading branch information
vogti committed Apr 18, 2024
1 parent 8b791b2 commit 10d00ce
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,7 @@
import java.util.Properties;
import lombok.extern.slf4j.Slf4j;
import org.junit.jupiter.api.BeforeAll;
import org.junit.jupiter.api.Disabled;
import org.junit.jupiter.api.Tag;
import org.junit.jupiter.api.Test;
import org.polypheny.db.PolyphenyDb;
Expand All @@ -51,6 +52,7 @@
@SuppressWarnings({ "SqlDialectInspection", "SqlNoDataSourceInspection" })
@Tag("adapter")
@Slf4j
@Disabled
public class JdbcConnectionTest {

private final static String dbHost = "localhost";
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@
import java.sql.ResultSet;
import java.sql.SQLException;
import java.sql.Statement;
import org.junit.jupiter.api.Disabled;
import org.junit.jupiter.api.Tag;
import org.junit.jupiter.api.Test;
import org.polypheny.db.PolyphenyDb;
Expand All @@ -34,6 +35,7 @@

@SuppressWarnings({ "SqlDialectInspection", "SqlNoDataSourceInspection" })
@Tag("adapter")
@Disabled
public class JdbcResultSetTest {

private static final String TABLE_SQL = "CREATE TABLE IF NOT EXISTS resultset_test (id INT, hex_value VARCHAR(2))";
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@
import java.sql.Statement;
import lombok.extern.slf4j.Slf4j;
import org.junit.jupiter.api.BeforeAll;
import org.junit.jupiter.api.Disabled;
import org.junit.jupiter.api.Tag;
import org.junit.jupiter.api.Test;
import org.polypheny.db.PolyphenyDb;
Expand All @@ -42,6 +43,7 @@
@SuppressWarnings({ "SqlDialectInspection", "SqlNoDataSourceInspection" })
@Tag("adapter")
@Slf4j
@Disabled
public class JdbcStatementTest {

private static final String CREATE_TEST_TABLE = "CREATE TABLE IF NOT EXISTS my_table (id INT, name VARCHAR(50))";
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ public static void tearDown() {


public static void createCollection( String collection, String database ) {
MongoConnection.executeGetResponse( String.format( "db.createPhysicalCollection( %s )", collection ), database );
MongoConnection.executeGetResponse( String.format( "db.createCollection( %s )", collection ), database );
}


Expand Down
2 changes: 1 addition & 1 deletion plugins/disabled.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@
# - add one plugin id on each line
# - put this file in plugins folder
########################################
html-adapterTemplate
html-adapter

0 comments on commit 10d00ce

Please sign in to comment.