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
@@ -126,6 +126,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
@@ -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.api.Assertions.assertThatThrownBy;
 import static org.assertj.core.data.Offset.offset;
 
@@ -769,7 +769,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.nio.file.Path;
 import java.sql.*;
@@ -56,7 +56,7 @@
         }
     }
 
-    @Test
+    /*@Test
     public void query() {
         // if e.getMessage() is "out of memory", it probably means no
         // database file is found
@@ -79,7 +79,7 @@
                                 rs.getString(2);
                             }
                         });
-    }
+    }*/
 
     @Test
     public void function() throws SQLException {
@@ -120,7 +120,7 @@
                             Thread.sleep(sleepMillis * 10);
                         } catch (InterruptedException ignored) {
                         }
-                        assertThatNoException()
+                        /*assertThatNoException()
                                 .isThrownBy(
                                         () -> {
                                             // Uncomment the synchronized block and everything
@@ -130,11 +130,11 @@
                                             conn.close();
                                             // }
                                         });
-                        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
@@ -633,7 +633,7 @@
         rs.close();
     }
 
-    @Test
+    /*@Test
     public void setEscapeProcessingToFalse() {
         assertThatNoException().isThrownBy(() -> stat.setEscapeProcessing(false));
     }
@@ -641,7 +641,7 @@
     @Test
     public void setEscapeProcessingToTrue() {
         assertThatNoException().isThrownBy(() -> stat.setEscapeProcessing(true));
-    }
+    }*/
 
     @Test
     public void unwrapTest() throws SQLException {
