Description: skipping tests needind unpackaged testing framework:
 - archunit-junit5 classes;
 - org.assertj.core.api.Assertions.assertThatNoException
Author: Pierre Gruet <pgt@debian.org>
Forwarded: not-needed
Last-Update: 2022-11-16

--- a/pom.xml
+++ b/pom.xml
@@ -124,6 +124,8 @@
                         <configuration>
                             <testExcludes>
                                 <exclude>**/OSInfoTest.java</exclude><!-- We are not building OSInfo.class -->
+                                <exclude>**/CodingRulesTest.java</exclude><!-- Relies on unpackaged archunit-junit5 classes -->
+                                <exclude>**/TestCodingRulesTest.java</exclude><!-- Relies on unpackaged archunit-junit5 classes -->
                             </testExcludes>
                         </configuration>
                     </execution>
--- a/src/test/java/org/sqlite/PrepStmtTest.java
+++ b/src/test/java/org/sqlite/PrepStmtTest.java
@@ -730,7 +730,7 @@
         assertThat(rs.isClosed()).isTrue();
         assertThat(ps.isClosed()).isFalse();
 
-        assertThatNoException().isThrownBy(ps::clearParameters);
+        //assertThatNoException().isThrownBy(ps::clearParameters);
     }
 
     @Test
--- a/src/test/java/org/sqlite/SQLiteJDBCLoaderTest.java
+++ b/src/test/java/org/sqlite/SQLiteJDBCLoaderTest.java
@@ -25,7 +25,7 @@
 package org.sqlite;
 
 import static org.assertj.core.api.Assertions.assertThat;
-import static org.assertj.core.api.Assertions.assertThatNoException;
+//import static org.assertj.core.api.Assertions.assertThatNoException;
 
 import java.sql.Connection;
 import java.sql.DriverManager;
@@ -58,7 +58,7 @@
         }
     }
 
-    @Test
+    /*@Test
     public void query() {
         // if e.getMessage() is "out of memory", it probably means no
         // database file is found
@@ -81,7 +81,7 @@
                                 rs.getString(2);
                             }
                         });
-    }
+    }*/
 
     @Test
     public void function() throws SQLException {
@@ -122,7 +122,7 @@
                             Thread.sleep(sleepMillis * 10);
                         } catch (InterruptedException ignored) {
                         }
-                        assertThatNoException()
+                        /*assertThatNoException()
                                 .isThrownBy(
                                         () -> {
                                             // Uncomment the synchronized block and everything
@@ -131,11 +131,11 @@
                                             Connection conn = DriverManager.getConnection(connStr);
                                             // }
                                         });
-                        completedThreads.incrementAndGet();
+                        completedThreads.incrementAndGet();*/
                     });
         }
         pool.shutdown();
         pool.awaitTermination(3, TimeUnit.SECONDS);
-        assertThat(completedThreads.get()).isEqualTo(32);
+        //assertThat(completedThreads.get()).isEqualTo(32);
     }
 }
--- a/src/test/java/org/sqlite/StatementTest.java
+++ b/src/test/java/org/sqlite/StatementTest.java
@@ -2,7 +2,7 @@
 
 import static org.assertj.core.api.Assertions.assertThat;
 import static org.assertj.core.api.Assertions.assertThatExceptionOfType;
-import static org.assertj.core.api.Assertions.assertThatNoException;
+//import static org.assertj.core.api.Assertions.assertThatNoException;
 import static org.assertj.core.data.Offset.offset;
 
 import java.lang.reflect.Method;
@@ -553,7 +553,7 @@
         rs.close();
     }
 
-    @Test
+    /*@Test
     public void setEscapeProcessingToFalse() {
         assertThatNoException().isThrownBy(() -> stat.setEscapeProcessing(false));
     }
@@ -561,7 +561,7 @@
     @Test
     public void setEscapeProcessingToTrue() {
         assertThatNoException().isThrownBy(() -> stat.setEscapeProcessing(true));
-    }
+    }*/
 
     @Test
     public void unwrapTest() throws SQLException {
