From 195cab76f08269865cdb7e8e900275d74fbede70 Mon Sep 17 00:00:00 2001 From: Julien Roy Date: Wed, 6 Nov 2024 09:40:21 +0100 Subject: [PATCH 1/4] Upgrade dependencies --- .github/workflows/build.yml | 17 +- .mvn/wrapper/MavenWrapperDownloader.java | 117 ----- .mvn/wrapper/maven-wrapper.properties | 21 +- licence-header.txt | 10 - mvnw | 451 ++++++++---------- mvnw.cmd | 281 +++++------ pom.xml | 35 +- ...sertOnValueCondition_DoesNotHave_Test.java | 8 +- .../AssertOnValueCondition_Has_Test.java | 4 +- .../AssertOnValueCondition_IsNot_Test.java | 8 +- .../AssertOnValueCondition_Is_Test.java | 4 +- ...AssertOnValueCondition_Satisfies_Test.java | 4 +- ...AssertionsOnValueCondition_IsNot_Test.java | 4 +- .../AssertionsOnValueCondition_Is_Test.java | 2 +- .../navigation/InstantiationError_Test.java | 14 +- 15 files changed, 391 insertions(+), 589 deletions(-) delete mode 100644 .mvn/wrapper/MavenWrapperDownloader.java delete mode 100644 licence-header.txt diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index c757cfb9..c70800b9 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -14,22 +14,17 @@ jobs: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v4 with: fetch-depth: 0 - - uses: actions/cache@v2 - with: - path: ~/.m2/repository - key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }} - restore-keys: | - ${{ runner.os }}-maven- - - name: Set up JDK 11 - uses: actions/setup-java@v2 + - name: Set up JDK 21 + uses: actions/setup-java@v4 with: distribution: 'temurin' - java-version: '11' + java-version: '21' + cache: 'maven' - name: Build with Maven - run: ./mvnw -B clean verify javadoc:javadoc --file pom.xml + run: ./mvnw -B verify javadoc:javadoc - name: Sonar Analysis if: ${{ github.event_name == 'push' || github.event.pull_request.head.repo.full_name == github.repository }} run: ./mvnw -B sonar:sonar --file pom.xml diff --git a/.mvn/wrapper/MavenWrapperDownloader.java b/.mvn/wrapper/MavenWrapperDownloader.java deleted file mode 100644 index b901097f..00000000 --- a/.mvn/wrapper/MavenWrapperDownloader.java +++ /dev/null @@ -1,117 +0,0 @@ -/* - * Copyright 2007-present the original author or authors. - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ -import java.net.*; -import java.io.*; -import java.nio.channels.*; -import java.util.Properties; - -public class MavenWrapperDownloader { - - private static final String WRAPPER_VERSION = "0.5.6"; - /** - * Default URL to download the maven-wrapper.jar from, if no 'downloadUrl' is provided. - */ - private static final String DEFAULT_DOWNLOAD_URL = "https://repo.maven.apache.org/maven2/io/takari/maven-wrapper/" - + WRAPPER_VERSION + "/maven-wrapper-" + WRAPPER_VERSION + ".jar"; - - /** - * Path to the maven-wrapper.properties file, which might contain a downloadUrl property to - * use instead of the default one. - */ - private static final String MAVEN_WRAPPER_PROPERTIES_PATH = - ".mvn/wrapper/maven-wrapper.properties"; - - /** - * Path where the maven-wrapper.jar will be saved to. - */ - private static final String MAVEN_WRAPPER_JAR_PATH = - ".mvn/wrapper/maven-wrapper.jar"; - - /** - * Name of the property which should be used to override the default download url for the wrapper. - */ - private static final String PROPERTY_NAME_WRAPPER_URL = "wrapperUrl"; - - public static void main(String args[]) { - System.out.println("- Downloader started"); - File baseDirectory = new File(args[0]); - System.out.println("- Using base directory: " + baseDirectory.getAbsolutePath()); - - // If the maven-wrapper.properties exists, read it and check if it contains a custom - // wrapperUrl parameter. - File mavenWrapperPropertyFile = new File(baseDirectory, MAVEN_WRAPPER_PROPERTIES_PATH); - String url = DEFAULT_DOWNLOAD_URL; - if(mavenWrapperPropertyFile.exists()) { - FileInputStream mavenWrapperPropertyFileInputStream = null; - try { - mavenWrapperPropertyFileInputStream = new FileInputStream(mavenWrapperPropertyFile); - Properties mavenWrapperProperties = new Properties(); - mavenWrapperProperties.load(mavenWrapperPropertyFileInputStream); - url = mavenWrapperProperties.getProperty(PROPERTY_NAME_WRAPPER_URL, url); - } catch (IOException e) { - System.out.println("- ERROR loading '" + MAVEN_WRAPPER_PROPERTIES_PATH + "'"); - } finally { - try { - if(mavenWrapperPropertyFileInputStream != null) { - mavenWrapperPropertyFileInputStream.close(); - } - } catch (IOException e) { - // Ignore ... - } - } - } - System.out.println("- Downloading from: " + url); - - File outputFile = new File(baseDirectory.getAbsolutePath(), MAVEN_WRAPPER_JAR_PATH); - if(!outputFile.getParentFile().exists()) { - if(!outputFile.getParentFile().mkdirs()) { - System.out.println( - "- ERROR creating output directory '" + outputFile.getParentFile().getAbsolutePath() + "'"); - } - } - System.out.println("- Downloading to: " + outputFile.getAbsolutePath()); - try { - downloadFileFromURL(url, outputFile); - System.out.println("Done"); - System.exit(0); - } catch (Throwable e) { - System.out.println("- Error downloading"); - e.printStackTrace(); - System.exit(1); - } - } - - private static void downloadFileFromURL(String urlString, File destination) throws Exception { - if (System.getenv("MVNW_USERNAME") != null && System.getenv("MVNW_PASSWORD") != null) { - String username = System.getenv("MVNW_USERNAME"); - char[] password = System.getenv("MVNW_PASSWORD").toCharArray(); - Authenticator.setDefault(new Authenticator() { - @Override - protected PasswordAuthentication getPasswordAuthentication() { - return new PasswordAuthentication(username, password); - } - }); - } - URL website = new URL(urlString); - ReadableByteChannel rbc; - rbc = Channels.newChannel(website.openStream()); - FileOutputStream fos = new FileOutputStream(destination); - fos.getChannel().transferFrom(rbc, 0, Long.MAX_VALUE); - fos.close(); - rbc.close(); - } - -} diff --git a/.mvn/wrapper/maven-wrapper.properties b/.mvn/wrapper/maven-wrapper.properties index 642d572c..d58dfb70 100644 --- a/.mvn/wrapper/maven-wrapper.properties +++ b/.mvn/wrapper/maven-wrapper.properties @@ -1,2 +1,19 @@ -distributionUrl=https://repo.maven.apache.org/maven2/org/apache/maven/apache-maven/3.6.3/apache-maven-3.6.3-bin.zip -wrapperUrl=https://repo.maven.apache.org/maven2/io/takari/maven-wrapper/0.5.6/maven-wrapper-0.5.6.jar +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, +# software distributed under the License is distributed on an +# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +# KIND, either express or implied. See the License for the +# specific language governing permissions and limitations +# under the License. +wrapperVersion=3.3.2 +distributionType=only-script +distributionUrl=https://repo.maven.apache.org/maven2/org/apache/maven/apache-maven/3.9.9/apache-maven-3.9.9-bin.zip diff --git a/licence-header.txt b/licence-header.txt deleted file mode 100644 index b96e314e..00000000 --- a/licence-header.txt +++ /dev/null @@ -1,10 +0,0 @@ -Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with -the License. You may obtain a copy of the License at - -http://www.apache.org/licenses/LICENSE-2.0 - -Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on -an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the -specific language governing permissions and limitations under the License. - -Copyright ${inceptionYear}-${currentYear} the original author or authors. \ No newline at end of file diff --git a/mvnw b/mvnw index 41c0f0c2..19529ddf 100755 --- a/mvnw +++ b/mvnw @@ -19,292 +19,241 @@ # ---------------------------------------------------------------------------- # ---------------------------------------------------------------------------- -# Maven Start Up Batch script -# -# Required ENV vars: -# ------------------ -# JAVA_HOME - location of a JDK home dir +# Apache Maven Wrapper startup batch script, version 3.3.2 # # Optional ENV vars # ----------------- -# M2_HOME - location of maven2's installed home dir -# MAVEN_OPTS - parameters passed to the Java VM when running Maven -# e.g. to debug Maven itself, use -# set MAVEN_OPTS=-Xdebug -Xrunjdwp:transport=dt_socket,server=y,suspend=y,address=8000 -# MAVEN_SKIP_RC - flag to disable loading of mavenrc files +# JAVA_HOME - location of a JDK home dir, required when download maven via java source +# MVNW_REPOURL - repo url base for downloading maven distribution +# MVNW_USERNAME/MVNW_PASSWORD - user and password for downloading maven +# MVNW_VERBOSE - true: enable verbose log; debug: trace the mvnw script; others: silence the output # ---------------------------------------------------------------------------- -if [ -z "$MAVEN_SKIP_RC" ] ; then - - if [ -f /etc/mavenrc ] ; then - . /etc/mavenrc - fi +set -euf +[ "${MVNW_VERBOSE-}" != debug ] || set -x - if [ -f "$HOME/.mavenrc" ] ; then - . "$HOME/.mavenrc" - fi +# OS specific support. +native_path() { printf %s\\n "$1"; } +case "$(uname)" in +CYGWIN* | MINGW*) + [ -z "${JAVA_HOME-}" ] || JAVA_HOME="$(cygpath --unix "$JAVA_HOME")" + native_path() { cygpath --path --windows "$1"; } + ;; +esac -fi +# set JAVACMD and JAVACCMD +set_java_home() { + # For Cygwin and MinGW, ensure paths are in Unix format before anything is touched + if [ -n "${JAVA_HOME-}" ]; then + if [ -x "$JAVA_HOME/jre/sh/java" ]; then + # IBM's JDK on AIX uses strange locations for the executables + JAVACMD="$JAVA_HOME/jre/sh/java" + JAVACCMD="$JAVA_HOME/jre/sh/javac" + else + JAVACMD="$JAVA_HOME/bin/java" + JAVACCMD="$JAVA_HOME/bin/javac" -# OS specific support. $var _must_ be set to either true or false. -cygwin=false; -darwin=false; -mingw=false -case "`uname`" in - CYGWIN*) cygwin=true ;; - MINGW*) mingw=true;; - Darwin*) darwin=true - # Use /usr/libexec/java_home if available, otherwise fall back to /Library/Java/Home - # See https://developer.apple.com/library/mac/qa/qa1170/_index.html - if [ -z "$JAVA_HOME" ]; then - if [ -x "/usr/libexec/java_home" ]; then - export JAVA_HOME="`/usr/libexec/java_home`" - else - export JAVA_HOME="/Library/Java/Home" + if [ ! -x "$JAVACMD" ] || [ ! -x "$JAVACCMD" ]; then + echo "The JAVA_HOME environment variable is not defined correctly, so mvnw cannot run." >&2 + echo "JAVA_HOME is set to \"$JAVA_HOME\", but \"\$JAVA_HOME/bin/java\" or \"\$JAVA_HOME/bin/javac\" does not exist." >&2 + return 1 fi fi - ;; -esac - -if [ -z "$JAVA_HOME" ] ; then - if [ -r /etc/gentoo-release ] ; then - JAVA_HOME=`java-config --jre-home` + else + JAVACMD="$( + 'set' +e + 'unset' -f command 2>/dev/null + 'command' -v java + )" || : + JAVACCMD="$( + 'set' +e + 'unset' -f command 2>/dev/null + 'command' -v javac + )" || : + + if [ ! -x "${JAVACMD-}" ] || [ ! -x "${JAVACCMD-}" ]; then + echo "The java/javac command does not exist in PATH nor is JAVA_HOME set, so mvnw cannot run." >&2 + return 1 + fi fi -fi - -if [ -z "$M2_HOME" ] ; then - ## resolve links - $0 may be a link to maven's home - PRG="$0" +} - # need this for relative symlinks - while [ -h "$PRG" ] ; do - ls=`ls -ld "$PRG"` - link=`expr "$ls" : '.*-> \(.*\)$'` - if expr "$link" : '/.*' > /dev/null; then - PRG="$link" - else - PRG="`dirname "$PRG"`/$link" - fi +# hash string like Java String::hashCode +hash_string() { + str="${1:-}" h=0 + while [ -n "$str" ]; do + char="${str%"${str#?}"}" + h=$(((h * 31 + $(LC_CTYPE=C printf %d "'$char")) % 4294967296)) + str="${str#?}" done + printf %x\\n $h +} - saveddir=`pwd` +verbose() { :; } +[ "${MVNW_VERBOSE-}" != true ] || verbose() { printf %s\\n "${1-}"; } - M2_HOME=`dirname "$PRG"`/.. +die() { + printf %s\\n "$1" >&2 + exit 1 +} - # make it fully qualified - M2_HOME=`cd "$M2_HOME" && pwd` +trim() { + # MWRAPPER-139: + # Trims trailing and leading whitespace, carriage returns, tabs, and linefeeds. + # Needed for removing poorly interpreted newline sequences when running in more + # exotic environments such as mingw bash on Windows. + printf "%s" "${1}" | tr -d '[:space:]' +} - cd "$saveddir" - # echo Using m2 at $M2_HOME -fi +# parse distributionUrl and optional distributionSha256Sum, requires .mvn/wrapper/maven-wrapper.properties +while IFS="=" read -r key value; do + case "${key-}" in + distributionUrl) distributionUrl=$(trim "${value-}") ;; + distributionSha256Sum) distributionSha256Sum=$(trim "${value-}") ;; + esac +done <"${0%/*}/.mvn/wrapper/maven-wrapper.properties" +[ -n "${distributionUrl-}" ] || die "cannot read distributionUrl property in ${0%/*}/.mvn/wrapper/maven-wrapper.properties" + +case "${distributionUrl##*/}" in +maven-mvnd-*bin.*) + MVN_CMD=mvnd.sh _MVNW_REPO_PATTERN=/maven/mvnd/ + case "${PROCESSOR_ARCHITECTURE-}${PROCESSOR_ARCHITEW6432-}:$(uname -a)" in + *AMD64:CYGWIN* | *AMD64:MINGW*) distributionPlatform=windows-amd64 ;; + :Darwin*x86_64) distributionPlatform=darwin-amd64 ;; + :Darwin*arm64) distributionPlatform=darwin-aarch64 ;; + :Linux*x86_64*) distributionPlatform=linux-amd64 ;; + *) + echo "Cannot detect native platform for mvnd on $(uname)-$(uname -m), use pure java version" >&2 + distributionPlatform=linux-amd64 + ;; + esac + distributionUrl="${distributionUrl%-bin.*}-$distributionPlatform.zip" + ;; +maven-mvnd-*) MVN_CMD=mvnd.sh _MVNW_REPO_PATTERN=/maven/mvnd/ ;; +*) MVN_CMD="mvn${0##*/mvnw}" _MVNW_REPO_PATTERN=/org/apache/maven/ ;; +esac -# For Cygwin, ensure paths are in UNIX format before anything is touched -if $cygwin ; then - [ -n "$M2_HOME" ] && - M2_HOME=`cygpath --unix "$M2_HOME"` - [ -n "$JAVA_HOME" ] && - JAVA_HOME=`cygpath --unix "$JAVA_HOME"` - [ -n "$CLASSPATH" ] && - CLASSPATH=`cygpath --path --unix "$CLASSPATH"` -fi +# apply MVNW_REPOURL and calculate MAVEN_HOME +# maven home pattern: ~/.m2/wrapper/dists/{apache-maven-,maven-mvnd--}/ +[ -z "${MVNW_REPOURL-}" ] || distributionUrl="$MVNW_REPOURL$_MVNW_REPO_PATTERN${distributionUrl#*"$_MVNW_REPO_PATTERN"}" +distributionUrlName="${distributionUrl##*/}" +distributionUrlNameMain="${distributionUrlName%.*}" +distributionUrlNameMain="${distributionUrlNameMain%-bin}" +MAVEN_USER_HOME="${MAVEN_USER_HOME:-${HOME}/.m2}" +MAVEN_HOME="${MAVEN_USER_HOME}/wrapper/dists/${distributionUrlNameMain-}/$(hash_string "$distributionUrl")" + +exec_maven() { + unset MVNW_VERBOSE MVNW_USERNAME MVNW_PASSWORD MVNW_REPOURL || : + exec "$MAVEN_HOME/bin/$MVN_CMD" "$@" || die "cannot exec $MAVEN_HOME/bin/$MVN_CMD" +} -# For Mingw, ensure paths are in UNIX format before anything is touched -if $mingw ; then - [ -n "$M2_HOME" ] && - M2_HOME="`(cd "$M2_HOME"; pwd)`" - [ -n "$JAVA_HOME" ] && - JAVA_HOME="`(cd "$JAVA_HOME"; pwd)`" +if [ -d "$MAVEN_HOME" ]; then + verbose "found existing MAVEN_HOME at $MAVEN_HOME" + exec_maven "$@" fi -if [ -z "$JAVA_HOME" ]; then - javaExecutable="`which javac`" - if [ -n "$javaExecutable" ] && ! [ "`expr \"$javaExecutable\" : '\([^ ]*\)'`" = "no" ]; then - # readlink(1) is not available as standard on Solaris 10. - readLink=`which readlink` - if [ ! `expr "$readLink" : '\([^ ]*\)'` = "no" ]; then - if $darwin ; then - javaHome="`dirname \"$javaExecutable\"`" - javaExecutable="`cd \"$javaHome\" && pwd -P`/javac" - else - javaExecutable="`readlink -f \"$javaExecutable\"`" - fi - javaHome="`dirname \"$javaExecutable\"`" - javaHome=`expr "$javaHome" : '\(.*\)/bin'` - JAVA_HOME="$javaHome" - export JAVA_HOME - fi - fi -fi +case "${distributionUrl-}" in +*?-bin.zip | *?maven-mvnd-?*-?*.zip) ;; +*) die "distributionUrl is not valid, must match *-bin.zip or maven-mvnd-*.zip, but found '${distributionUrl-}'" ;; +esac -if [ -z "$JAVACMD" ] ; then - if [ -n "$JAVA_HOME" ] ; then - if [ -x "$JAVA_HOME/jre/sh/java" ] ; then - # IBM's JDK on AIX uses strange locations for the executables - JAVACMD="$JAVA_HOME/jre/sh/java" - else - JAVACMD="$JAVA_HOME/bin/java" - fi - else - JAVACMD="`which java`" - fi +# prepare tmp dir +if TMP_DOWNLOAD_DIR="$(mktemp -d)" && [ -d "$TMP_DOWNLOAD_DIR" ]; then + clean() { rm -rf -- "$TMP_DOWNLOAD_DIR"; } + trap clean HUP INT TERM EXIT +else + die "cannot create temp dir" fi -if [ ! -x "$JAVACMD" ] ; then - echo "Error: JAVA_HOME is not defined correctly." >&2 - echo " We cannot execute $JAVACMD" >&2 - exit 1 -fi +mkdir -p -- "${MAVEN_HOME%/*}" + +# Download and Install Apache Maven +verbose "Couldn't find MAVEN_HOME, downloading and installing it ..." +verbose "Downloading from: $distributionUrl" +verbose "Downloading to: $TMP_DOWNLOAD_DIR/$distributionUrlName" -if [ -z "$JAVA_HOME" ] ; then - echo "Warning: JAVA_HOME environment variable is not set." +# select .zip or .tar.gz +if ! command -v unzip >/dev/null; then + distributionUrl="${distributionUrl%.zip}.tar.gz" + distributionUrlName="${distributionUrl##*/}" fi -CLASSWORLDS_LAUNCHER=org.codehaus.plexus.classworlds.launcher.Launcher +# verbose opt +__MVNW_QUIET_WGET=--quiet __MVNW_QUIET_CURL=--silent __MVNW_QUIET_UNZIP=-q __MVNW_QUIET_TAR='' +[ "${MVNW_VERBOSE-}" != true ] || __MVNW_QUIET_WGET='' __MVNW_QUIET_CURL='' __MVNW_QUIET_UNZIP='' __MVNW_QUIET_TAR=v -# traverses directory structure from process work directory to filesystem root -# first directory with .mvn subdirectory is considered project base directory -find_maven_basedir() { +# normalize http auth +case "${MVNW_PASSWORD:+has-password}" in +'') MVNW_USERNAME='' MVNW_PASSWORD='' ;; +has-password) [ -n "${MVNW_USERNAME-}" ] || MVNW_USERNAME='' MVNW_PASSWORD='' ;; +esac - if [ -z "$1" ] - then - echo "Path not specified to find_maven_basedir" - return 1 - fi +if [ -z "${MVNW_USERNAME-}" ] && command -v wget >/dev/null; then + verbose "Found wget ... using wget" + wget ${__MVNW_QUIET_WGET:+"$__MVNW_QUIET_WGET"} "$distributionUrl" -O "$TMP_DOWNLOAD_DIR/$distributionUrlName" || die "wget: Failed to fetch $distributionUrl" +elif [ -z "${MVNW_USERNAME-}" ] && command -v curl >/dev/null; then + verbose "Found curl ... using curl" + curl ${__MVNW_QUIET_CURL:+"$__MVNW_QUIET_CURL"} -f -L -o "$TMP_DOWNLOAD_DIR/$distributionUrlName" "$distributionUrl" || die "curl: Failed to fetch $distributionUrl" +elif set_java_home; then + verbose "Falling back to use Java to download" + javaSource="$TMP_DOWNLOAD_DIR/Downloader.java" + targetZip="$TMP_DOWNLOAD_DIR/$distributionUrlName" + cat >"$javaSource" <<-END + public class Downloader extends java.net.Authenticator + { + protected java.net.PasswordAuthentication getPasswordAuthentication() + { + return new java.net.PasswordAuthentication( System.getenv( "MVNW_USERNAME" ), System.getenv( "MVNW_PASSWORD" ).toCharArray() ); + } + public static void main( String[] args ) throws Exception + { + setDefault( new Downloader() ); + java.nio.file.Files.copy( java.net.URI.create( args[0] ).toURL().openStream(), java.nio.file.Paths.get( args[1] ).toAbsolutePath().normalize() ); + } + } + END + # For Cygwin/MinGW, switch paths to Windows format before running javac and java + verbose " - Compiling Downloader.java ..." + "$(native_path "$JAVACCMD")" "$(native_path "$javaSource")" || die "Failed to compile Downloader.java" + verbose " - Running Downloader.java ..." + "$(native_path "$JAVACMD")" -cp "$(native_path "$TMP_DOWNLOAD_DIR")" Downloader "$distributionUrl" "$(native_path "$targetZip")" +fi - basedir="$1" - wdir="$1" - while [ "$wdir" != '/' ] ; do - if [ -d "$wdir"/.mvn ] ; then - basedir=$wdir - break +# If specified, validate the SHA-256 sum of the Maven distribution zip file +if [ -n "${distributionSha256Sum-}" ]; then + distributionSha256Result=false + if [ "$MVN_CMD" = mvnd.sh ]; then + echo "Checksum validation is not supported for maven-mvnd." >&2 + echo "Please disable validation by removing 'distributionSha256Sum' from your maven-wrapper.properties." >&2 + exit 1 + elif command -v sha256sum >/dev/null; then + if echo "$distributionSha256Sum $TMP_DOWNLOAD_DIR/$distributionUrlName" | sha256sum -c >/dev/null 2>&1; then + distributionSha256Result=true fi - # workaround for JBEAP-8937 (on Solaris 10/Sparc) - if [ -d "${wdir}" ]; then - wdir=`cd "$wdir/.."; pwd` + elif command -v shasum >/dev/null; then + if echo "$distributionSha256Sum $TMP_DOWNLOAD_DIR/$distributionUrlName" | shasum -a 256 -c >/dev/null 2>&1; then + distributionSha256Result=true fi - # end of workaround - done - echo "${basedir}" -} - -# concatenates all lines of a file -concat_lines() { - if [ -f "$1" ]; then - echo "$(tr -s '\n' ' ' < "$1")" + else + echo "Checksum validation was requested but neither 'sha256sum' or 'shasum' are available." >&2 + echo "Please install either command, or disable validation by removing 'distributionSha256Sum' from your maven-wrapper.properties." >&2 + exit 1 + fi + if [ $distributionSha256Result = false ]; then + echo "Error: Failed to validate Maven distribution SHA-256, your Maven distribution might be compromised." >&2 + echo "If you updated your Maven version, you need to update the specified distributionSha256Sum property." >&2 + exit 1 fi -} - -BASE_DIR=`find_maven_basedir "$(pwd)"` -if [ -z "$BASE_DIR" ]; then - exit 1; fi -########################################################################################## -# Extension to allow automatically downloading the maven-wrapper.jar from Maven-central -# This allows using the maven wrapper in projects that prohibit checking in binary data. -########################################################################################## -if [ -r "$BASE_DIR/.mvn/wrapper/maven-wrapper.jar" ]; then - if [ "$MVNW_VERBOSE" = true ]; then - echo "Found .mvn/wrapper/maven-wrapper.jar" - fi +# unzip and move +if command -v unzip >/dev/null; then + unzip ${__MVNW_QUIET_UNZIP:+"$__MVNW_QUIET_UNZIP"} "$TMP_DOWNLOAD_DIR/$distributionUrlName" -d "$TMP_DOWNLOAD_DIR" || die "failed to unzip" else - if [ "$MVNW_VERBOSE" = true ]; then - echo "Couldn't find .mvn/wrapper/maven-wrapper.jar, downloading it ..." - fi - if [ -n "$MVNW_REPOURL" ]; then - jarUrl="$MVNW_REPOURL/io/takari/maven-wrapper/0.5.6/maven-wrapper-0.5.6.jar" - else - jarUrl="https://repo.maven.apache.org/maven2/io/takari/maven-wrapper/0.5.6/maven-wrapper-0.5.6.jar" - fi - while IFS="=" read key value; do - case "$key" in (wrapperUrl) jarUrl="$value"; break ;; - esac - done < "$BASE_DIR/.mvn/wrapper/maven-wrapper.properties" - if [ "$MVNW_VERBOSE" = true ]; then - echo "Downloading from: $jarUrl" - fi - wrapperJarPath="$BASE_DIR/.mvn/wrapper/maven-wrapper.jar" - if $cygwin; then - wrapperJarPath=`cygpath --path --windows "$wrapperJarPath"` - fi - - if command -v wget > /dev/null; then - if [ "$MVNW_VERBOSE" = true ]; then - echo "Found wget ... using wget" - fi - if [ -z "$MVNW_USERNAME" ] || [ -z "$MVNW_PASSWORD" ]; then - wget "$jarUrl" -O "$wrapperJarPath" - else - wget --http-user=$MVNW_USERNAME --http-password=$MVNW_PASSWORD "$jarUrl" -O "$wrapperJarPath" - fi - elif command -v curl > /dev/null; then - if [ "$MVNW_VERBOSE" = true ]; then - echo "Found curl ... using curl" - fi - if [ -z "$MVNW_USERNAME" ] || [ -z "$MVNW_PASSWORD" ]; then - curl -o "$wrapperJarPath" "$jarUrl" -f - else - curl --user $MVNW_USERNAME:$MVNW_PASSWORD -o "$wrapperJarPath" "$jarUrl" -f - fi - - else - if [ "$MVNW_VERBOSE" = true ]; then - echo "Falling back to using Java to download" - fi - javaClass="$BASE_DIR/.mvn/wrapper/MavenWrapperDownloader.java" - # For Cygwin, switch paths to Windows format before running javac - if $cygwin; then - javaClass=`cygpath --path --windows "$javaClass"` - fi - if [ -e "$javaClass" ]; then - if [ ! -e "$BASE_DIR/.mvn/wrapper/MavenWrapperDownloader.class" ]; then - if [ "$MVNW_VERBOSE" = true ]; then - echo " - Compiling MavenWrapperDownloader.java ..." - fi - # Compiling the Java class - ("$JAVA_HOME/bin/javac" "$javaClass") - fi - if [ -e "$BASE_DIR/.mvn/wrapper/MavenWrapperDownloader.class" ]; then - # Running the downloader - if [ "$MVNW_VERBOSE" = true ]; then - echo " - Running MavenWrapperDownloader.java ..." - fi - ("$JAVA_HOME/bin/java" -cp .mvn/wrapper MavenWrapperDownloader "$MAVEN_PROJECTBASEDIR") - fi - fi - fi -fi -########################################################################################## -# End of extension -########################################################################################## - -export MAVEN_PROJECTBASEDIR=${MAVEN_BASEDIR:-"$BASE_DIR"} -if [ "$MVNW_VERBOSE" = true ]; then - echo $MAVEN_PROJECTBASEDIR + tar xzf${__MVNW_QUIET_TAR:+"$__MVNW_QUIET_TAR"} "$TMP_DOWNLOAD_DIR/$distributionUrlName" -C "$TMP_DOWNLOAD_DIR" || die "failed to untar" fi -MAVEN_OPTS="$(concat_lines "$MAVEN_PROJECTBASEDIR/.mvn/jvm.config") $MAVEN_OPTS" - -# For Cygwin, switch paths to Windows format before running java -if $cygwin; then - [ -n "$M2_HOME" ] && - M2_HOME=`cygpath --path --windows "$M2_HOME"` - [ -n "$JAVA_HOME" ] && - JAVA_HOME=`cygpath --path --windows "$JAVA_HOME"` - [ -n "$CLASSPATH" ] && - CLASSPATH=`cygpath --path --windows "$CLASSPATH"` - [ -n "$MAVEN_PROJECTBASEDIR" ] && - MAVEN_PROJECTBASEDIR=`cygpath --path --windows "$MAVEN_PROJECTBASEDIR"` -fi - -# Provide a "standardized" way to retrieve the CLI args that will -# work with both Windows and non-Windows executions. -MAVEN_CMD_LINE_ARGS="$MAVEN_CONFIG $@" -export MAVEN_CMD_LINE_ARGS - -WRAPPER_LAUNCHER=org.apache.maven.wrapper.MavenWrapperMain +printf %s\\n "$distributionUrl" >"$TMP_DOWNLOAD_DIR/$distributionUrlNameMain/mvnw.url" +mv -- "$TMP_DOWNLOAD_DIR/$distributionUrlNameMain" "$MAVEN_HOME" || [ -d "$MAVEN_HOME" ] || die "fail to move MAVEN_HOME" -exec "$JAVACMD" \ - $MAVEN_OPTS \ - -classpath "$MAVEN_PROJECTBASEDIR/.mvn/wrapper/maven-wrapper.jar" \ - "-Dmaven.home=${M2_HOME}" "-Dmaven.multiModuleProjectDirectory=${MAVEN_PROJECTBASEDIR}" \ - ${WRAPPER_LAUNCHER} $MAVEN_CONFIG "$@" +clean || : +exec_maven "$@" diff --git a/mvnw.cmd b/mvnw.cmd index 86115719..249bdf38 100644 --- a/mvnw.cmd +++ b/mvnw.cmd @@ -1,3 +1,4 @@ +<# : batch portion @REM ---------------------------------------------------------------------------- @REM Licensed to the Apache Software Foundation (ASF) under one @REM or more contributor license agreements. See the NOTICE file @@ -18,165 +19,131 @@ @REM ---------------------------------------------------------------------------- @REM ---------------------------------------------------------------------------- -@REM Maven Start Up Batch script -@REM -@REM Required ENV vars: -@REM JAVA_HOME - location of a JDK home dir +@REM Apache Maven Wrapper startup batch script, version 3.3.2 @REM @REM Optional ENV vars -@REM M2_HOME - location of maven2's installed home dir -@REM MAVEN_BATCH_ECHO - set to 'on' to enable the echoing of the batch commands -@REM MAVEN_BATCH_PAUSE - set to 'on' to wait for a keystroke before ending -@REM MAVEN_OPTS - parameters passed to the Java VM when running Maven -@REM e.g. to debug Maven itself, use -@REM set MAVEN_OPTS=-Xdebug -Xrunjdwp:transport=dt_socket,server=y,suspend=y,address=8000 -@REM MAVEN_SKIP_RC - flag to disable loading of mavenrc files +@REM MVNW_REPOURL - repo url base for downloading maven distribution +@REM MVNW_USERNAME/MVNW_PASSWORD - user and password for downloading maven +@REM MVNW_VERBOSE - true: enable verbose log; others: silence the output @REM ---------------------------------------------------------------------------- -@REM Begin all REM lines with '@' in case MAVEN_BATCH_ECHO is 'on' -@echo off -@REM set title of command window -title %0 -@REM enable echoing by setting MAVEN_BATCH_ECHO to 'on' -@if "%MAVEN_BATCH_ECHO%" == "on" echo %MAVEN_BATCH_ECHO% - -@REM set %HOME% to equivalent of $HOME -if "%HOME%" == "" (set "HOME=%HOMEDRIVE%%HOMEPATH%") - -@REM Execute a user defined script before this one -if not "%MAVEN_SKIP_RC%" == "" goto skipRcPre -@REM check for pre script, once with legacy .bat ending and once with .cmd ending -if exist "%HOME%\mavenrc_pre.bat" call "%HOME%\mavenrc_pre.bat" -if exist "%HOME%\mavenrc_pre.cmd" call "%HOME%\mavenrc_pre.cmd" -:skipRcPre - -@setlocal - -set ERROR_CODE=0 - -@REM To isolate internal variables from possible post scripts, we use another setlocal -@setlocal - -@REM ==== START VALIDATION ==== -if not "%JAVA_HOME%" == "" goto OkJHome - -echo. -echo Error: JAVA_HOME not found in your environment. >&2 -echo Please set the JAVA_HOME variable in your environment to match the >&2 -echo location of your Java installation. >&2 -echo. -goto error - -:OkJHome -if exist "%JAVA_HOME%\bin\java.exe" goto init - -echo. -echo Error: JAVA_HOME is set to an invalid directory. >&2 -echo JAVA_HOME = "%JAVA_HOME%" >&2 -echo Please set the JAVA_HOME variable in your environment to match the >&2 -echo location of your Java installation. >&2 -echo. -goto error - -@REM ==== END VALIDATION ==== - -:init - -@REM Find the project base dir, i.e. the directory that contains the folder ".mvn". -@REM Fallback to current working directory if not found. - -set MAVEN_PROJECTBASEDIR=%MAVEN_BASEDIR% -IF NOT "%MAVEN_PROJECTBASEDIR%"=="" goto endDetectBaseDir - -set EXEC_DIR=%CD% -set WDIR=%EXEC_DIR% -:findBaseDir -IF EXIST "%WDIR%"\.mvn goto baseDirFound -cd .. -IF "%WDIR%"=="%CD%" goto baseDirNotFound -set WDIR=%CD% -goto findBaseDir - -:baseDirFound -set MAVEN_PROJECTBASEDIR=%WDIR% -cd "%EXEC_DIR%" -goto endDetectBaseDir - -:baseDirNotFound -set MAVEN_PROJECTBASEDIR=%EXEC_DIR% -cd "%EXEC_DIR%" - -:endDetectBaseDir - -IF NOT EXIST "%MAVEN_PROJECTBASEDIR%\.mvn\jvm.config" goto endReadAdditionalConfig - -@setlocal EnableExtensions EnableDelayedExpansion -for /F "usebackq delims=" %%a in ("%MAVEN_PROJECTBASEDIR%\.mvn\jvm.config") do set JVM_CONFIG_MAVEN_PROPS=!JVM_CONFIG_MAVEN_PROPS! %%a -@endlocal & set JVM_CONFIG_MAVEN_PROPS=%JVM_CONFIG_MAVEN_PROPS% - -:endReadAdditionalConfig - -SET MAVEN_JAVA_EXE="%JAVA_HOME%\bin\java.exe" -set WRAPPER_JAR="%MAVEN_PROJECTBASEDIR%\.mvn\wrapper\maven-wrapper.jar" -set WRAPPER_LAUNCHER=org.apache.maven.wrapper.MavenWrapperMain - -set DOWNLOAD_URL="https://repo.maven.apache.org/maven2/io/takari/maven-wrapper/0.5.6/maven-wrapper-0.5.6.jar" - -FOR /F "tokens=1,2 delims==" %%A IN ("%MAVEN_PROJECTBASEDIR%\.mvn\wrapper\maven-wrapper.properties") DO ( - IF "%%A"=="wrapperUrl" SET DOWNLOAD_URL=%%B -) - -@REM Extension to allow automatically downloading the maven-wrapper.jar from Maven-central -@REM This allows using the maven wrapper in projects that prohibit checking in binary data. -if exist %WRAPPER_JAR% ( - if "%MVNW_VERBOSE%" == "true" ( - echo Found %WRAPPER_JAR% - ) -) else ( - if not "%MVNW_REPOURL%" == "" ( - SET DOWNLOAD_URL="%MVNW_REPOURL%/io/takari/maven-wrapper/0.5.6/maven-wrapper-0.5.6.jar" - ) - if "%MVNW_VERBOSE%" == "true" ( - echo Couldn't find %WRAPPER_JAR%, downloading it ... - echo Downloading from: %DOWNLOAD_URL% - ) - - powershell -Command "&{"^ - "$webclient = new-object System.Net.WebClient;"^ - "if (-not ([string]::IsNullOrEmpty('%MVNW_USERNAME%') -and [string]::IsNullOrEmpty('%MVNW_PASSWORD%'))) {"^ - "$webclient.Credentials = new-object System.Net.NetworkCredential('%MVNW_USERNAME%', '%MVNW_PASSWORD%');"^ - "}"^ - "[Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls12; $webclient.DownloadFile('%DOWNLOAD_URL%', '%WRAPPER_JAR%')"^ - "}" - if "%MVNW_VERBOSE%" == "true" ( - echo Finished downloading %WRAPPER_JAR% - ) +@IF "%__MVNW_ARG0_NAME__%"=="" (SET __MVNW_ARG0_NAME__=%~nx0) +@SET __MVNW_CMD__= +@SET __MVNW_ERROR__= +@SET __MVNW_PSMODULEP_SAVE=%PSModulePath% +@SET PSModulePath= +@FOR /F "usebackq tokens=1* delims==" %%A IN (`powershell -noprofile "& {$scriptDir='%~dp0'; $script='%__MVNW_ARG0_NAME__%'; icm -ScriptBlock ([Scriptblock]::Create((Get-Content -Raw '%~f0'))) -NoNewScope}"`) DO @( + IF "%%A"=="MVN_CMD" (set __MVNW_CMD__=%%B) ELSE IF "%%B"=="" (echo %%A) ELSE (echo %%A=%%B) ) -@REM End of extension - -@REM Provide a "standardized" way to retrieve the CLI args that will -@REM work with both Windows and non-Windows executions. -set MAVEN_CMD_LINE_ARGS=%* - -%MAVEN_JAVA_EXE% %JVM_CONFIG_MAVEN_PROPS% %MAVEN_OPTS% %MAVEN_DEBUG_OPTS% -classpath %WRAPPER_JAR% "-Dmaven.multiModuleProjectDirectory=%MAVEN_PROJECTBASEDIR%" %WRAPPER_LAUNCHER% %MAVEN_CONFIG% %* -if ERRORLEVEL 1 goto error -goto end - -:error -set ERROR_CODE=1 - -:end -@endlocal & set ERROR_CODE=%ERROR_CODE% - -if not "%MAVEN_SKIP_RC%" == "" goto skipRcPost -@REM check for post script, once with legacy .bat ending and once with .cmd ending -if exist "%HOME%\mavenrc_post.bat" call "%HOME%\mavenrc_post.bat" -if exist "%HOME%\mavenrc_post.cmd" call "%HOME%\mavenrc_post.cmd" -:skipRcPost - -@REM pause the script if MAVEN_BATCH_PAUSE is set to 'on' -if "%MAVEN_BATCH_PAUSE%" == "on" pause - -if "%MAVEN_TERMINATE_CMD%" == "on" exit %ERROR_CODE% - -exit /B %ERROR_CODE% +@SET PSModulePath=%__MVNW_PSMODULEP_SAVE% +@SET __MVNW_PSMODULEP_SAVE= +@SET __MVNW_ARG0_NAME__= +@SET MVNW_USERNAME= +@SET MVNW_PASSWORD= +@IF NOT "%__MVNW_CMD__%"=="" (%__MVNW_CMD__% %*) +@echo Cannot start maven from wrapper >&2 && exit /b 1 +@GOTO :EOF +: end batch / begin powershell #> + +$ErrorActionPreference = "Stop" +if ($env:MVNW_VERBOSE -eq "true") { + $VerbosePreference = "Continue" +} + +# calculate distributionUrl, requires .mvn/wrapper/maven-wrapper.properties +$distributionUrl = (Get-Content -Raw "$scriptDir/.mvn/wrapper/maven-wrapper.properties" | ConvertFrom-StringData).distributionUrl +if (!$distributionUrl) { + Write-Error "cannot read distributionUrl property in $scriptDir/.mvn/wrapper/maven-wrapper.properties" +} + +switch -wildcard -casesensitive ( $($distributionUrl -replace '^.*/','') ) { + "maven-mvnd-*" { + $USE_MVND = $true + $distributionUrl = $distributionUrl -replace '-bin\.[^.]*$',"-windows-amd64.zip" + $MVN_CMD = "mvnd.cmd" + break + } + default { + $USE_MVND = $false + $MVN_CMD = $script -replace '^mvnw','mvn' + break + } +} + +# apply MVNW_REPOURL and calculate MAVEN_HOME +# maven home pattern: ~/.m2/wrapper/dists/{apache-maven-,maven-mvnd--}/ +if ($env:MVNW_REPOURL) { + $MVNW_REPO_PATTERN = if ($USE_MVND) { "/org/apache/maven/" } else { "/maven/mvnd/" } + $distributionUrl = "$env:MVNW_REPOURL$MVNW_REPO_PATTERN$($distributionUrl -replace '^.*'+$MVNW_REPO_PATTERN,'')" +} +$distributionUrlName = $distributionUrl -replace '^.*/','' +$distributionUrlNameMain = $distributionUrlName -replace '\.[^.]*$','' -replace '-bin$','' +$MAVEN_HOME_PARENT = "$HOME/.m2/wrapper/dists/$distributionUrlNameMain" +if ($env:MAVEN_USER_HOME) { + $MAVEN_HOME_PARENT = "$env:MAVEN_USER_HOME/wrapper/dists/$distributionUrlNameMain" +} +$MAVEN_HOME_NAME = ([System.Security.Cryptography.MD5]::Create().ComputeHash([byte[]][char[]]$distributionUrl) | ForEach-Object {$_.ToString("x2")}) -join '' +$MAVEN_HOME = "$MAVEN_HOME_PARENT/$MAVEN_HOME_NAME" + +if (Test-Path -Path "$MAVEN_HOME" -PathType Container) { + Write-Verbose "found existing MAVEN_HOME at $MAVEN_HOME" + Write-Output "MVN_CMD=$MAVEN_HOME/bin/$MVN_CMD" + exit $? +} + +if (! $distributionUrlNameMain -or ($distributionUrlName -eq $distributionUrlNameMain)) { + Write-Error "distributionUrl is not valid, must end with *-bin.zip, but found $distributionUrl" +} + +# prepare tmp dir +$TMP_DOWNLOAD_DIR_HOLDER = New-TemporaryFile +$TMP_DOWNLOAD_DIR = New-Item -Itemtype Directory -Path "$TMP_DOWNLOAD_DIR_HOLDER.dir" +$TMP_DOWNLOAD_DIR_HOLDER.Delete() | Out-Null +trap { + if ($TMP_DOWNLOAD_DIR.Exists) { + try { Remove-Item $TMP_DOWNLOAD_DIR -Recurse -Force | Out-Null } + catch { Write-Warning "Cannot remove $TMP_DOWNLOAD_DIR" } + } +} + +New-Item -Itemtype Directory -Path "$MAVEN_HOME_PARENT" -Force | Out-Null + +# Download and Install Apache Maven +Write-Verbose "Couldn't find MAVEN_HOME, downloading and installing it ..." +Write-Verbose "Downloading from: $distributionUrl" +Write-Verbose "Downloading to: $TMP_DOWNLOAD_DIR/$distributionUrlName" + +$webclient = New-Object System.Net.WebClient +if ($env:MVNW_USERNAME -and $env:MVNW_PASSWORD) { + $webclient.Credentials = New-Object System.Net.NetworkCredential($env:MVNW_USERNAME, $env:MVNW_PASSWORD) +} +[Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls12 +$webclient.DownloadFile($distributionUrl, "$TMP_DOWNLOAD_DIR/$distributionUrlName") | Out-Null + +# If specified, validate the SHA-256 sum of the Maven distribution zip file +$distributionSha256Sum = (Get-Content -Raw "$scriptDir/.mvn/wrapper/maven-wrapper.properties" | ConvertFrom-StringData).distributionSha256Sum +if ($distributionSha256Sum) { + if ($USE_MVND) { + Write-Error "Checksum validation is not supported for maven-mvnd. `nPlease disable validation by removing 'distributionSha256Sum' from your maven-wrapper.properties." + } + Import-Module $PSHOME\Modules\Microsoft.PowerShell.Utility -Function Get-FileHash + if ((Get-FileHash "$TMP_DOWNLOAD_DIR/$distributionUrlName" -Algorithm SHA256).Hash.ToLower() -ne $distributionSha256Sum) { + Write-Error "Error: Failed to validate Maven distribution SHA-256, your Maven distribution might be compromised. If you updated your Maven version, you need to update the specified distributionSha256Sum property." + } +} + +# unzip and move +Expand-Archive "$TMP_DOWNLOAD_DIR/$distributionUrlName" -DestinationPath "$TMP_DOWNLOAD_DIR" | Out-Null +Rename-Item -Path "$TMP_DOWNLOAD_DIR/$distributionUrlNameMain" -NewName $MAVEN_HOME_NAME | Out-Null +try { + Move-Item -Path "$TMP_DOWNLOAD_DIR/$MAVEN_HOME_NAME" -Destination $MAVEN_HOME_PARENT | Out-Null +} catch { + if (! (Test-Path -Path "$MAVEN_HOME" -PathType Container)) { + Write-Error "fail to move MAVEN_HOME" + } +} finally { + try { Remove-Item $TMP_DOWNLOAD_DIR -Recurse -Force | Out-Null } + catch { Write-Warning "Cannot remove $TMP_DOWNLOAD_DIR" } +} + +Write-Output "MVN_CMD=$MAVEN_HOME/bin/$MVN_CMD" diff --git a/pom.xml b/pom.xml index b0172136..37a6df0e 100644 --- a/pom.xml +++ b/pom.xml @@ -2,22 +2,25 @@ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> 4.0.0 + + + org.assertj + assertj-parent + 3.26.3 + + assertj-db 3.0.0-SNAPSHOT - jar + AssertJ-DB - Assertions for database AssertJ-DB - Rich and fluent assertions for testing with database - - org.assertj - assertj-parent-pom - 2.2.10 - + 2015 scm:git:ssh://git@github.com/assertj/assertj-db.git scm:git:ssh://git@github.com/assertj/assertj-db.git git@github.com:assertj/assertj-db - assertj-db-2.0.2 + HEAD @@ -27,8 +30,6 @@ --allow-script-in-comments - 2015 - 8 https://sonarcloud.io @@ -40,12 +41,12 @@ org.assertj assertj-core - 3.19.0 + 3.21.0 net.bytebuddy byte-buddy - 1.10.21 + 1.12.1 true @@ -56,19 +57,19 @@ org.springframework spring-test - 5.3.4 + 5.3.39 test org.springframework spring-context - 5.3.4 + 5.3.39 test org.springframework spring-jdbc - 5.3.4 + 5.3.39 test @@ -80,7 +81,7 @@ org.hsqldb hsqldb - 2.5.1 + 2.7.3 test @@ -92,7 +93,7 @@ org.apache.commons commons-dbcp2 - 2.8.0 + 2.12.0 test @@ -224,7 +225,7 @@ org.sonarsource.scanner.maven sonar-maven-plugin - 3.8.0.2131 + 4.0.0.4121 diff --git a/src/test/java/org/assertj/db/api/assertions/AssertOnValueCondition_DoesNotHave_Test.java b/src/test/java/org/assertj/db/api/assertions/AssertOnValueCondition_DoesNotHave_Test.java index 54ffae35..7dbd1aa7 100644 --- a/src/test/java/org/assertj/db/api/assertions/AssertOnValueCondition_DoesNotHave_Test.java +++ b/src/test/java/org/assertj/db/api/assertions/AssertOnValueCondition_DoesNotHave_Test.java @@ -79,9 +79,9 @@ public void should_fail_because_value_not_match_with_condition() { Assertions.assertThat(e.getMessage()).isEqualTo(String.format( "[Value at end point of Column at index 2 (column name : VAR3) of Change at index 0 (with primary key : [1000]) of " + "Changes on TEST table of 'sa/jdbc:h2:mem:test' source] %n" - + "Expecting:%n" + + "Expecting actual:%n" + " 0%n" - + "not to be isZero")); + + "not to be isZero")); } try { assertThat(table).column("var3").value(3).doesNotHave(zero); @@ -89,9 +89,9 @@ public void should_fail_because_value_not_match_with_condition() { } catch (AssertionError e) { Assertions.assertThat(e.getMessage()) .isEqualTo(String.format("[Value at index 3 of Column at index 2 (column name : VAR3) of TEST table] %n" - + "Expecting:%n" + + "Expecting actual:%n" + " 0%n" - + "not to be isZero")); + + "not to be isZero")); } } } diff --git a/src/test/java/org/assertj/db/api/assertions/AssertOnValueCondition_Has_Test.java b/src/test/java/org/assertj/db/api/assertions/AssertOnValueCondition_Has_Test.java index f1017d87..17ebf881 100644 --- a/src/test/java/org/assertj/db/api/assertions/AssertOnValueCondition_Has_Test.java +++ b/src/test/java/org/assertj/db/api/assertions/AssertOnValueCondition_Has_Test.java @@ -79,7 +79,7 @@ public void should_fail_because_value_not_match_with_condition() { Assertions.assertThat(e.getMessage()).isEqualTo(String.format( "[Value at end point of Column at index 2 (column name : VAR3) of Change at index 0 (with primary key : [1]) of " + "Changes on TEST table of 'sa/jdbc:h2:mem:test' source] %n" - + "Expecting:%n" + + "Expecting actual:%n" + " 2%n" + "to be isZero")); } @@ -89,7 +89,7 @@ public void should_fail_because_value_not_match_with_condition() { } catch (AssertionError e) { Assertions.assertThat(e.getMessage()) .isEqualTo(String.format("[Value at index 0 of Column at index 2 (column name : VAR3) of TEST table] %n" - + "Expecting:%n" + + "Expecting actual:%n" + " 2%n" + "to be isZero")); } diff --git a/src/test/java/org/assertj/db/api/assertions/AssertOnValueCondition_IsNot_Test.java b/src/test/java/org/assertj/db/api/assertions/AssertOnValueCondition_IsNot_Test.java index 22e28e4f..f405ad92 100644 --- a/src/test/java/org/assertj/db/api/assertions/AssertOnValueCondition_IsNot_Test.java +++ b/src/test/java/org/assertj/db/api/assertions/AssertOnValueCondition_IsNot_Test.java @@ -79,9 +79,9 @@ public void should_fail_because_value_not_match_with_condition() { Assertions.assertThat(e.getMessage()).isEqualTo(String.format( "[Value at end point of Column at index 2 (column name : VAR3) of Change at index 0 (with primary key : [1000]) of " + "Changes on TEST table of 'sa/jdbc:h2:mem:test' source] %n" - + "Expecting:%n" + + "Expecting actual:%n" + " 0%n" - + "not to be isZero")); + + "not to be isZero")); } try { assertThat(table).column("var3").value(3).isNot(zero); @@ -89,9 +89,9 @@ public void should_fail_because_value_not_match_with_condition() { } catch (AssertionError e) { Assertions.assertThat(e.getMessage()) .isEqualTo(String.format("[Value at index 3 of Column at index 2 (column name : VAR3) of TEST table] %n" - + "Expecting:%n" + + "Expecting actual:%n" + " 0%n" - + "not to be isZero")); + + "not to be isZero")); } } } diff --git a/src/test/java/org/assertj/db/api/assertions/AssertOnValueCondition_Is_Test.java b/src/test/java/org/assertj/db/api/assertions/AssertOnValueCondition_Is_Test.java index 28b0187e..63841081 100644 --- a/src/test/java/org/assertj/db/api/assertions/AssertOnValueCondition_Is_Test.java +++ b/src/test/java/org/assertj/db/api/assertions/AssertOnValueCondition_Is_Test.java @@ -79,7 +79,7 @@ public void should_fail_because_value_not_match_with_condition() { Assertions.assertThat(e.getMessage()).isEqualTo(String.format( "[Value at end point of Column at index 2 (column name : VAR3) of Change at index 0 (with primary key : [1]) of " + "Changes on TEST table of 'sa/jdbc:h2:mem:test' source] %n" - + "Expecting:%n" + + "Expecting actual:%n" + " 2%n" + "to be isZero")); } @@ -89,7 +89,7 @@ public void should_fail_because_value_not_match_with_condition() { } catch (AssertionError e) { Assertions.assertThat(e.getMessage()) .isEqualTo(String.format("[Value at index 0 of Column at index 2 (column name : VAR3) of TEST table] %n" - + "Expecting:%n" + + "Expecting actual:%n" + " 2%n" + "to be isZero")); } diff --git a/src/test/java/org/assertj/db/api/assertions/AssertOnValueCondition_Satisfies_Test.java b/src/test/java/org/assertj/db/api/assertions/AssertOnValueCondition_Satisfies_Test.java index 15ad5731..858c8985 100644 --- a/src/test/java/org/assertj/db/api/assertions/AssertOnValueCondition_Satisfies_Test.java +++ b/src/test/java/org/assertj/db/api/assertions/AssertOnValueCondition_Satisfies_Test.java @@ -79,7 +79,7 @@ public void should_fail_because_value_not_match_with_condition() { Assertions.assertThat(e.getMessage()).isEqualTo(String.format( "[Value at end point of Column at index 2 (column name : VAR3) of Change at index 0 (with primary key : [1]) of " + "Changes on TEST table of 'sa/jdbc:h2:mem:test' source] %n" - + "Expecting:%n" + + "Expecting actual:%n" + " 2%n" + "to satisfy:%n" + " isZero")); @@ -90,7 +90,7 @@ public void should_fail_because_value_not_match_with_condition() { } catch (AssertionError e) { Assertions.assertThat(e.getMessage()) .isEqualTo(String.format("[Value at index 0 of Column at index 2 (column name : VAR3) of TEST table] %n" - + "Expecting:%n" + + "Expecting actual:%n" + " 2%n" + "to satisfy:%n" + " isZero")); diff --git a/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnValueCondition_IsNot_Test.java b/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnValueCondition_IsNot_Test.java index c062e804..f2b31c3a 100644 --- a/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnValueCondition_IsNot_Test.java +++ b/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnValueCondition_IsNot_Test.java @@ -65,9 +65,9 @@ public void should_fail_because_value_not_satisfies_condition() throws Exception fail("An exception must be raised"); } catch (AssertionError e) { Assertions.assertThat(e.getMessage()).isEqualTo(String.format("[description] %n" - + "Expecting:%n" + + "Expecting actual:%n" + " 0%n" - + "not to be isZero")); + + "not to be isZero")); } } } diff --git a/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnValueCondition_Is_Test.java b/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnValueCondition_Is_Test.java index 955b913a..8c2f5b84 100644 --- a/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnValueCondition_Is_Test.java +++ b/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnValueCondition_Is_Test.java @@ -65,7 +65,7 @@ public void should_fail_because_value_not_satisfies_condition() throws Exception fail("An exception must be raised"); } catch (AssertionError e) { Assertions.assertThat(e.getMessage()).isEqualTo(String.format("[description] %n" - + "Expecting:%n" + + "Expecting actual:%n" + " 1%n" + "to be isZero")); } diff --git a/src/test/java/org/assertj/db/navigation/InstantiationError_Test.java b/src/test/java/org/assertj/db/navigation/InstantiationError_Test.java index 0d1466f7..36425f25 100644 --- a/src/test/java/org/assertj/db/navigation/InstantiationError_Test.java +++ b/src/test/java/org/assertj/db/navigation/InstantiationError_Test.java @@ -57,7 +57,7 @@ public void should_fail_because_mistake_in_instantiation_of_column() throws Exce tableAssert.column(); fail("An exception must be raised"); } catch (AssertJDBException e) { - Assertions.assertThat(e.getMessage()).isEqualTo(String.format("There is an exception 'org.assertj.db.navigation.InstantiationError_Test.(org.assertj.db.api.TableAssert, org.assertj.db.type.Column)'%n" + Assertions.assertThat(e.getMessage()).isEqualTo(String.format("There is an exception 'org.assertj.db.navigation.InstantiationError_Test.(org.assertj.db.api.TableAssert,org.assertj.db.type.Column)'%n" + "\t in the instantiation of the element org.assertj.db.navigation.InstantiationError_Test%n" + "\t on class org.assertj.db.type.Column with class org.assertj.db.api.TableAssert.%n" + " It is normally impossible.%n" @@ -84,7 +84,7 @@ public void should_fail_because_mistake_in_instantiation_of_row() throws Excepti tableAssert.row(); fail("An exception must be raised"); } catch (AssertJDBException e) { - Assertions.assertThat(e.getMessage()).isEqualTo(String.format("There is an exception 'org.assertj.db.navigation.InstantiationError_Test.(org.assertj.db.api.TableAssert, org.assertj.db.type.Row)'%n" + Assertions.assertThat(e.getMessage()).isEqualTo(String.format("There is an exception 'org.assertj.db.navigation.InstantiationError_Test.(org.assertj.db.api.TableAssert,org.assertj.db.type.Row)'%n" + "\t in the instantiation of the element org.assertj.db.navigation.InstantiationError_Test%n" + "\t on class org.assertj.db.type.Row with class org.assertj.db.api.TableAssert.%n" + " It is normally impossible.%n" @@ -111,7 +111,7 @@ public void should_fail_because_mistake_in_instantiation_of_value() throws Excep tableColumnAssert.value(); fail("An exception must be raised"); } catch (AssertJDBException e) { - Assertions.assertThat(e.getMessage()).isEqualTo(String.format("There is an exception 'org.assertj.db.navigation.InstantiationError_Test.(org.assertj.db.api.TableColumnAssert, org.assertj.db.type.Value)'%n" + Assertions.assertThat(e.getMessage()).isEqualTo(String.format("There is an exception 'org.assertj.db.navigation.InstantiationError_Test.(org.assertj.db.api.TableColumnAssert,org.assertj.db.type.Value)'%n" + "\t in the instantiation of the element org.assertj.db.navigation.InstantiationError_Test%n" + "\t on class org.assertj.db.type.Value with class org.assertj.db.api.TableColumnAssert.%n" + " It is normally impossible.%n" @@ -141,7 +141,7 @@ public void should_fail_because_mistake_in_instantiation_of_changes() throws Exc changesAssert.ofCreation(); fail("An exception must be raised"); } catch (AssertJDBException e) { - Assertions.assertThat(e.getMessage()).isEqualTo(String.format("There is an exception 'org.assertj.db.navigation.InstantiationError_Test.(org.assertj.db.api.ChangesAssert, org.assertj.db.type.Changes)'%n" + Assertions.assertThat(e.getMessage()).isEqualTo(String.format("There is an exception 'org.assertj.db.navigation.InstantiationError_Test.(org.assertj.db.api.ChangesAssert,org.assertj.db.type.Changes)'%n" + "\t in the instantiation of the element org.assertj.db.navigation.InstantiationError_Test%n" + "\t on class org.assertj.db.type.Changes with class org.assertj.db.api.ChangesAssert.%n" + " It is normally impossible.%n" @@ -171,7 +171,7 @@ public void should_fail_because_mistake_in_instantiation_of_change() throws Exce changesAssert.change(1); fail("An exception must be raised"); } catch (AssertJDBException e) { - Assertions.assertThat(e.getMessage()).isEqualTo(String.format("There is an exception 'org.assertj.db.navigation.InstantiationError_Test.(org.assertj.db.api.ChangesAssert, org.assertj.db.type.Change)'%n" + Assertions.assertThat(e.getMessage()).isEqualTo(String.format("There is an exception 'org.assertj.db.navigation.InstantiationError_Test.(org.assertj.db.api.ChangesAssert,org.assertj.db.type.Change)'%n" + "\t in the instantiation of the element org.assertj.db.navigation.InstantiationError_Test%n" + "\t on class org.assertj.db.type.Change with class org.assertj.db.api.ChangesAssert.%n" + " It is normally impossible.%n" @@ -201,7 +201,7 @@ public void should_fail_because_mistake_in_instantiation_of_columnchange() throw changeAssert.column(1); fail("An exception must be raised"); } catch (AssertJDBException e) { - Assertions.assertThat(e.getMessage()).isEqualTo(String.format("There is an exception 'org.assertj.db.navigation.InstantiationError_Test.(org.assertj.db.api.ChangeAssert, java.lang.String, org.assertj.db.type.Value, org.assertj.db.type.Value)'%n" + Assertions.assertThat(e.getMessage()).isEqualTo(String.format("There is an exception 'org.assertj.db.navigation.InstantiationError_Test.(org.assertj.db.api.ChangeAssert,java.lang.String,org.assertj.db.type.Value,org.assertj.db.type.Value)'%n" + "\t in the instantiation of the element org.assertj.db.navigation.InstantiationError_Test%n" + "\t with class org.assertj.db.api.ChangeAssert.%n" + " It is normally impossible.%n" @@ -231,7 +231,7 @@ public void should_fail_because_mistake_in_instantiation_of_rowAtStartPoint() th changeAssert.rowAtStartPoint(); fail("An exception must be raised"); } catch (AssertJDBException e) { - Assertions.assertThat(e.getMessage()).isEqualTo(String.format("There is an exception 'org.assertj.db.navigation.InstantiationError_Test.(org.assertj.db.api.ChangeAssert, org.assertj.db.type.Row)'%n" + Assertions.assertThat(e.getMessage()).isEqualTo(String.format("There is an exception 'org.assertj.db.navigation.InstantiationError_Test.(org.assertj.db.api.ChangeAssert,org.assertj.db.type.Row)'%n" + "\t in the instantiation of the element org.assertj.db.navigation.InstantiationError_Test%n" + "\t on class org.assertj.db.type.Row with class org.assertj.db.api.ChangeAssert.%n" + " It is normally impossible.%n" From 6ffa9bce1699b4fd3d3a00ca6cf8bf713278d515 Mon Sep 17 00:00:00 2001 From: Julien Roy Date: Wed, 6 Nov 2024 13:16:33 +0100 Subject: [PATCH 2/4] Bump the licence current year to 2024 --- src/main/java/org/assertj/db/api/AbstractAssert.java | 2 +- src/main/java/org/assertj/db/api/AbstractAssertWithOrigin.java | 2 +- .../org/assertj/db/api/AbstractAssertWithOriginWithChanges.java | 2 +- .../db/api/AbstractAssertWithOriginWithColumnsAndRows.java | 2 +- .../AbstractAssertWithOriginWithColumnsAndRowsFromChange.java | 2 +- src/main/java/org/assertj/db/api/AbstractAssertWithValues.java | 2 +- src/main/java/org/assertj/db/api/AbstractColumnAssert.java | 2 +- src/main/java/org/assertj/db/api/AbstractColumnValueAssert.java | 2 +- src/main/java/org/assertj/db/api/AbstractDbAssert.java | 2 +- src/main/java/org/assertj/db/api/AbstractRowAssert.java | 2 +- src/main/java/org/assertj/db/api/AbstractRowValueAssert.java | 2 +- src/main/java/org/assertj/db/api/AbstractSoftAssertions.java | 2 +- src/main/java/org/assertj/db/api/AbstractSubAssert.java | 2 +- src/main/java/org/assertj/db/api/AbstractValueAssert.java | 2 +- src/main/java/org/assertj/db/api/Assertions.java | 2 +- src/main/java/org/assertj/db/api/BDDAssertions.java | 2 +- src/main/java/org/assertj/db/api/ChangeAssert.java | 2 +- src/main/java/org/assertj/db/api/ChangeColumnAssert.java | 2 +- src/main/java/org/assertj/db/api/ChangeColumnValueAssert.java | 2 +- src/main/java/org/assertj/db/api/ChangeRowAssert.java | 2 +- src/main/java/org/assertj/db/api/ChangeRowValueAssert.java | 2 +- src/main/java/org/assertj/db/api/ChangesAssert.java | 2 +- src/main/java/org/assertj/db/api/ErrorCollector.java | 2 +- src/main/java/org/assertj/db/api/ProxifyPositionResult.java | 2 +- src/main/java/org/assertj/db/api/RequestAssert.java | 2 +- src/main/java/org/assertj/db/api/RequestColumnAssert.java | 2 +- src/main/java/org/assertj/db/api/RequestColumnValueAssert.java | 2 +- src/main/java/org/assertj/db/api/RequestRowAssert.java | 2 +- src/main/java/org/assertj/db/api/RequestRowValueAssert.java | 2 +- src/main/java/org/assertj/db/api/SoftAssertions.java | 2 +- src/main/java/org/assertj/db/api/SoftProxies.java | 2 +- src/main/java/org/assertj/db/api/TableAssert.java | 2 +- src/main/java/org/assertj/db/api/TableColumnAssert.java | 2 +- src/main/java/org/assertj/db/api/TableColumnValueAssert.java | 2 +- src/main/java/org/assertj/db/api/TableRowAssert.java | 2 +- src/main/java/org/assertj/db/api/TableRowValueAssert.java | 2 +- .../java/org/assertj/db/api/assertions/AssertOnChangeType.java | 2 +- .../java/org/assertj/db/api/assertions/AssertOnColumnClass.java | 2 +- .../org/assertj/db/api/assertions/AssertOnColumnContent.java | 2 +- .../org/assertj/db/api/assertions/AssertOnColumnEquality.java | 2 +- .../java/org/assertj/db/api/assertions/AssertOnColumnName.java | 2 +- .../org/assertj/db/api/assertions/AssertOnColumnNullity.java | 2 +- .../db/api/assertions/AssertOnColumnOfChangeEquality.java | 2 +- .../java/org/assertj/db/api/assertions/AssertOnColumnType.java | 2 +- .../java/org/assertj/db/api/assertions/AssertOnDataType.java | 2 +- .../java/org/assertj/db/api/assertions/AssertOnExistence.java | 2 +- .../org/assertj/db/api/assertions/AssertOnModifiedColumn.java | 2 +- .../org/assertj/db/api/assertions/AssertOnModifiedColumns.java | 2 +- .../org/assertj/db/api/assertions/AssertOnNumberOfChanges.java | 2 +- .../org/assertj/db/api/assertions/AssertOnNumberOfColumns.java | 2 +- .../org/assertj/db/api/assertions/AssertOnNumberOfRows.java | 2 +- .../java/org/assertj/db/api/assertions/AssertOnPrimaryKey.java | 2 +- .../org/assertj/db/api/assertions/AssertOnRowCondition.java | 2 +- .../java/org/assertj/db/api/assertions/AssertOnRowEquality.java | 2 +- .../java/org/assertj/db/api/assertions/AssertOnRowNullity.java | 2 +- .../assertj/db/api/assertions/AssertOnRowOfChangeExistence.java | 2 +- .../org/assertj/db/api/assertions/AssertOnValueChronology.java | 2 +- .../java/org/assertj/db/api/assertions/AssertOnValueClass.java | 2 +- .../org/assertj/db/api/assertions/AssertOnValueCloseness.java | 2 +- .../org/assertj/db/api/assertions/AssertOnValueComparison.java | 2 +- .../org/assertj/db/api/assertions/AssertOnValueCondition.java | 2 +- .../org/assertj/db/api/assertions/AssertOnValueEquality.java | 2 +- .../org/assertj/db/api/assertions/AssertOnValueInequality.java | 2 +- .../org/assertj/db/api/assertions/AssertOnValueNullity.java | 2 +- .../java/org/assertj/db/api/assertions/AssertOnValueType.java | 2 +- .../assertj/db/api/assertions/impl/AssertionsOnChangeType.java | 2 +- .../assertj/db/api/assertions/impl/AssertionsOnColumnClass.java | 2 +- .../db/api/assertions/impl/AssertionsOnColumnContent.java | 2 +- .../db/api/assertions/impl/AssertionsOnColumnEquality.java | 2 +- .../assertj/db/api/assertions/impl/AssertionsOnColumnName.java | 2 +- .../db/api/assertions/impl/AssertionsOnColumnOfChangeClass.java | 2 +- .../api/assertions/impl/AssertionsOnColumnOfChangeEquality.java | 2 +- .../db/api/assertions/impl/AssertionsOnColumnOfChangeType.java | 2 +- .../assertj/db/api/assertions/impl/AssertionsOnColumnType.java | 2 +- .../assertj/db/api/assertions/impl/AssertionsOnDataType.java | 2 +- .../db/api/assertions/impl/AssertionsOnModifiedColumn.java | 2 +- .../db/api/assertions/impl/AssertionsOnModifiedColumns.java | 2 +- .../db/api/assertions/impl/AssertionsOnNumberOfChanges.java | 2 +- .../db/api/assertions/impl/AssertionsOnNumberOfColumns.java | 2 +- .../db/api/assertions/impl/AssertionsOnNumberOfRows.java | 2 +- .../assertj/db/api/assertions/impl/AssertionsOnPrimaryKey.java | 2 +- .../db/api/assertions/impl/AssertionsOnRowCondition.java | 2 +- .../assertj/db/api/assertions/impl/AssertionsOnRowEquality.java | 2 +- .../api/assertions/impl/AssertionsOnRowOfChangeExistence.java | 2 +- .../db/api/assertions/impl/AssertionsOnTableExistence.java | 2 +- .../db/api/assertions/impl/AssertionsOnValueChronology.java | 2 +- .../assertj/db/api/assertions/impl/AssertionsOnValueClass.java | 2 +- .../db/api/assertions/impl/AssertionsOnValueCloseness.java | 2 +- .../db/api/assertions/impl/AssertionsOnValueComparison.java | 2 +- .../db/api/assertions/impl/AssertionsOnValueCondition.java | 2 +- .../db/api/assertions/impl/AssertionsOnValueEquality.java | 2 +- .../db/api/assertions/impl/AssertionsOnValueInequality.java | 2 +- .../db/api/assertions/impl/AssertionsOnValueNullity.java | 2 +- .../assertj/db/api/assertions/impl/AssertionsOnValueType.java | 2 +- .../db/api/assertions/impl/AssertionsOnValuesNullity.java | 2 +- .../java/org/assertj/db/api/assertions/impl/package-info.java | 2 +- src/main/java/org/assertj/db/api/assertions/package-info.java | 2 +- src/main/java/org/assertj/db/api/package-info.java | 2 +- src/main/java/org/assertj/db/error/ShouldBeAfter.java | 2 +- src/main/java/org/assertj/db/error/ShouldBeAfterOrEqual.java | 2 +- src/main/java/org/assertj/db/error/ShouldBeBefore.java | 2 +- src/main/java/org/assertj/db/error/ShouldBeBeforeOrEqual.java | 2 +- src/main/java/org/assertj/db/error/ShouldBeChangeType.java | 2 +- src/main/java/org/assertj/db/error/ShouldBeClose.java | 2 +- src/main/java/org/assertj/db/error/ShouldBeCompatible.java | 2 +- src/main/java/org/assertj/db/error/ShouldBeDataType.java | 2 +- src/main/java/org/assertj/db/error/ShouldBeEqual.java | 2 +- .../java/org/assertj/db/error/ShouldBeEqualWithEndPoint.java | 2 +- .../java/org/assertj/db/error/ShouldBeEqualWithStartPoint.java | 2 +- src/main/java/org/assertj/db/error/ShouldBeGreater.java | 2 +- src/main/java/org/assertj/db/error/ShouldBeGreaterOrEqual.java | 2 +- src/main/java/org/assertj/db/error/ShouldBeLess.java | 2 +- src/main/java/org/assertj/db/error/ShouldBeLessOrEqual.java | 2 +- src/main/java/org/assertj/db/error/ShouldBeModified.java | 2 +- src/main/java/org/assertj/db/error/ShouldBeOnTable.java | 2 +- src/main/java/org/assertj/db/error/ShouldBeValueClass.java | 2 +- .../org/assertj/db/error/ShouldBeValueClassWithEndPoint.java | 2 +- .../org/assertj/db/error/ShouldBeValueClassWithStartPoint.java | 2 +- src/main/java/org/assertj/db/error/ShouldBeValueType.java | 2 +- src/main/java/org/assertj/db/error/ShouldBeValueTypeOfAny.java | 2 +- .../assertj/db/error/ShouldBeValueTypeOfAnyWithEndPoint.java | 2 +- .../assertj/db/error/ShouldBeValueTypeOfAnyWithStartPoint.java | 2 +- .../org/assertj/db/error/ShouldBeValueTypeWithEndPoint.java | 2 +- .../org/assertj/db/error/ShouldBeValueTypeWithStartPoint.java | 2 +- .../java/org/assertj/db/error/ShouldContainsOnlyNotNull.java | 2 +- src/main/java/org/assertj/db/error/ShouldContainsOnlyNull.java | 2 +- src/main/java/org/assertj/db/error/ShouldContainsValue.java | 2 +- src/main/java/org/assertj/db/error/ShouldExist.java | 2 +- src/main/java/org/assertj/db/error/ShouldHaveChangesSize.java | 2 +- .../java/org/assertj/db/error/ShouldHaveChangesSizeGreater.java | 2 +- .../assertj/db/error/ShouldHaveChangesSizeGreaterOrEqual.java | 2 +- .../java/org/assertj/db/error/ShouldHaveChangesSizeLess.java | 2 +- .../org/assertj/db/error/ShouldHaveChangesSizeLessOrEqual.java | 2 +- src/main/java/org/assertj/db/error/ShouldHaveColumnsSize.java | 2 +- .../java/org/assertj/db/error/ShouldHaveColumnsSizeGreater.java | 2 +- .../assertj/db/error/ShouldHaveColumnsSizeGreaterOrEqual.java | 2 +- .../java/org/assertj/db/error/ShouldHaveColumnsSizeLess.java | 2 +- .../org/assertj/db/error/ShouldHaveColumnsSizeLessOrEqual.java | 2 +- src/main/java/org/assertj/db/error/ShouldHaveModifications.java | 2 +- src/main/java/org/assertj/db/error/ShouldHaveName.java | 2 +- .../org/assertj/db/error/ShouldHaveNumberOfModifications.java | 2 +- .../db/error/ShouldHaveNumberOfModificationsGreater.java | 2 +- .../db/error/ShouldHaveNumberOfModificationsGreaterOrEqual.java | 2 +- .../assertj/db/error/ShouldHaveNumberOfModificationsLess.java | 2 +- .../db/error/ShouldHaveNumberOfModificationsLessOrEqual.java | 2 +- src/main/java/org/assertj/db/error/ShouldHavePksNames.java | 2 +- src/main/java/org/assertj/db/error/ShouldHavePksValues.java | 2 +- src/main/java/org/assertj/db/error/ShouldHaveRowsSize.java | 2 +- .../java/org/assertj/db/error/ShouldHaveRowsSizeGreater.java | 2 +- .../org/assertj/db/error/ShouldHaveRowsSizeGreaterOrEqual.java | 2 +- src/main/java/org/assertj/db/error/ShouldHaveRowsSizeLess.java | 2 +- .../org/assertj/db/error/ShouldHaveRowsSizeLessOrEqual.java | 2 +- src/main/java/org/assertj/db/error/ShouldNotBeEqual.java | 2 +- src/main/java/org/assertj/db/error/ShouldNotBeModified.java | 2 +- src/main/java/org/assertj/db/error/ShouldNotExist.java | 2 +- src/main/java/org/assertj/db/error/ShouldSatisfy.java | 2 +- src/main/java/org/assertj/db/error/package-info.java | 2 +- src/main/java/org/assertj/db/exception/AssertJDBException.java | 2 +- src/main/java/org/assertj/db/exception/package-info.java | 2 +- src/main/java/org/assertj/db/global/AbstractElement.java | 2 +- src/main/java/org/assertj/db/global/package-info.java | 2 +- src/main/java/org/assertj/db/navigation/Navigation.java | 2 +- src/main/java/org/assertj/db/navigation/Position.java | 2 +- .../java/org/assertj/db/navigation/PositionWithChanges.java | 2 +- .../java/org/assertj/db/navigation/PositionWithColumns.java | 2 +- .../org/assertj/db/navigation/PositionWithColumnsChange.java | 2 +- src/main/java/org/assertj/db/navigation/PositionWithPoints.java | 2 +- src/main/java/org/assertj/db/navigation/ToChange.java | 2 +- src/main/java/org/assertj/db/navigation/ToChanges.java | 2 +- src/main/java/org/assertj/db/navigation/ToColumn.java | 2 +- src/main/java/org/assertj/db/navigation/ToColumnFromChange.java | 2 +- src/main/java/org/assertj/db/navigation/ToRow.java | 2 +- src/main/java/org/assertj/db/navigation/ToRowFromChange.java | 2 +- src/main/java/org/assertj/db/navigation/ToValue.java | 2 +- src/main/java/org/assertj/db/navigation/ToValueFromColumn.java | 2 +- src/main/java/org/assertj/db/navigation/ToValueFromRow.java | 2 +- .../java/org/assertj/db/navigation/element/ChangeElement.java | 2 +- .../java/org/assertj/db/navigation/element/ChangesElement.java | 2 +- .../java/org/assertj/db/navigation/element/ColumnElement.java | 2 +- src/main/java/org/assertj/db/navigation/element/Element.java | 2 +- src/main/java/org/assertj/db/navigation/element/RowElement.java | 2 +- .../java/org/assertj/db/navigation/element/ValueElement.java | 2 +- .../java/org/assertj/db/navigation/element/package-info.java | 2 +- src/main/java/org/assertj/db/navigation/origin/Origin.java | 2 +- .../org/assertj/db/navigation/origin/OriginWithChanges.java | 2 +- .../assertj/db/navigation/origin/OriginWithColumnsAndRows.java | 2 +- .../navigation/origin/OriginWithColumnsAndRowsFromChange.java | 2 +- .../db/navigation/origin/OriginWithValuesFromColumn.java | 2 +- .../assertj/db/navigation/origin/OriginWithValuesFromRow.java | 2 +- .../java/org/assertj/db/navigation/origin/package-info.java | 2 +- src/main/java/org/assertj/db/navigation/package-info.java | 2 +- .../java/org/assertj/db/output/AbstractColumnOutputter.java | 2 +- .../org/assertj/db/output/AbstractColumnValueOutputter.java | 2 +- src/main/java/org/assertj/db/output/AbstractDbOutputter.java | 2 +- src/main/java/org/assertj/db/output/AbstractOutputter.java | 2 +- .../java/org/assertj/db/output/AbstractOutputterWithOrigin.java | 2 +- .../db/output/AbstractOutputterWithOriginWithChanges.java | 2 +- .../output/AbstractOutputterWithOriginWithColumnsAndRows.java | 2 +- ...AbstractOutputterWithOriginWithColumnsAndRowsFromChange.java | 2 +- .../java/org/assertj/db/output/AbstractOutputterWithValues.java | 2 +- src/main/java/org/assertj/db/output/AbstractRowOutputter.java | 2 +- .../java/org/assertj/db/output/AbstractRowValueOutputter.java | 2 +- src/main/java/org/assertj/db/output/AbstractSubOutputter.java | 2 +- src/main/java/org/assertj/db/output/AbstractValueOutputter.java | 2 +- src/main/java/org/assertj/db/output/ChangeColumnOutputter.java | 2 +- .../java/org/assertj/db/output/ChangeColumnValueOutputter.java | 2 +- src/main/java/org/assertj/db/output/ChangeOutputter.java | 2 +- src/main/java/org/assertj/db/output/ChangeRowOutputter.java | 2 +- .../java/org/assertj/db/output/ChangeRowValueOutputter.java | 2 +- src/main/java/org/assertj/db/output/ChangesOutputter.java | 2 +- src/main/java/org/assertj/db/output/Outputs.java | 2 +- src/main/java/org/assertj/db/output/RequestColumnOutputter.java | 2 +- .../java/org/assertj/db/output/RequestColumnValueOutputter.java | 2 +- src/main/java/org/assertj/db/output/RequestOutputter.java | 2 +- src/main/java/org/assertj/db/output/RequestRowOutputter.java | 2 +- .../java/org/assertj/db/output/RequestRowValueOutputter.java | 2 +- src/main/java/org/assertj/db/output/TableColumnOutputter.java | 2 +- .../java/org/assertj/db/output/TableColumnValueOutputter.java | 2 +- src/main/java/org/assertj/db/output/TableOutputter.java | 2 +- src/main/java/org/assertj/db/output/TableRowOutputter.java | 2 +- src/main/java/org/assertj/db/output/TableRowValueOutputter.java | 2 +- src/main/java/org/assertj/db/output/impl/HtmlOutput.java | 2 +- src/main/java/org/assertj/db/output/impl/Output.java | 2 +- src/main/java/org/assertj/db/output/impl/OutputType.java | 2 +- src/main/java/org/assertj/db/output/impl/PlainOutput.java | 2 +- src/main/java/org/assertj/db/output/impl/package-info.java | 2 +- src/main/java/org/assertj/db/output/package-info.java | 2 +- src/main/java/org/assertj/db/type/AbstractDbData.java | 2 +- src/main/java/org/assertj/db/type/AbstractDbElement.java | 2 +- src/main/java/org/assertj/db/type/Change.java | 2 +- src/main/java/org/assertj/db/type/ChangeType.java | 2 +- src/main/java/org/assertj/db/type/Changes.java | 2 +- src/main/java/org/assertj/db/type/Column.java | 2 +- src/main/java/org/assertj/db/type/DataSourceWithLetterCase.java | 2 +- src/main/java/org/assertj/db/type/DataType.java | 2 +- src/main/java/org/assertj/db/type/DateTimeValue.java | 2 +- src/main/java/org/assertj/db/type/DateValue.java | 2 +- src/main/java/org/assertj/db/type/DateValueContainer.java | 2 +- src/main/java/org/assertj/db/type/DbElement.java | 2 +- src/main/java/org/assertj/db/type/Request.java | 2 +- src/main/java/org/assertj/db/type/Row.java | 2 +- src/main/java/org/assertj/db/type/Source.java | 2 +- src/main/java/org/assertj/db/type/SourceWithLetterCase.java | 2 +- src/main/java/org/assertj/db/type/Table.java | 2 +- src/main/java/org/assertj/db/type/TimeValue.java | 2 +- src/main/java/org/assertj/db/type/Value.java | 2 +- src/main/java/org/assertj/db/type/ValueType.java | 2 +- .../java/org/assertj/db/type/lettercase/CaseComparison.java | 2 +- .../java/org/assertj/db/type/lettercase/CaseComparisons.java | 2 +- .../java/org/assertj/db/type/lettercase/CaseConversion.java | 2 +- .../java/org/assertj/db/type/lettercase/CaseConversions.java | 2 +- src/main/java/org/assertj/db/type/lettercase/LetterCase.java | 2 +- .../org/assertj/db/type/lettercase/WithColumnLetterCase.java | 2 +- .../java/org/assertj/db/type/lettercase/WithLetterCase.java | 2 +- .../assertj/db/type/lettercase/WithPrimaryKeyLetterCase.java | 2 +- .../org/assertj/db/type/lettercase/WithTableLetterCase.java | 2 +- src/main/java/org/assertj/db/type/lettercase/package-info.java | 2 +- src/main/java/org/assertj/db/type/package-info.java | 2 +- src/main/java/org/assertj/db/util/ChangeComparator.java | 2 +- src/main/java/org/assertj/db/util/Changes.java | 2 +- src/main/java/org/assertj/db/util/Descriptions.java | 2 +- src/main/java/org/assertj/db/util/NameComparator.java | 2 +- src/main/java/org/assertj/db/util/Proxies.java | 2 +- src/main/java/org/assertj/db/util/RowComparator.java | 2 +- src/main/java/org/assertj/db/util/Values.java | 2 +- src/main/java/org/assertj/db/util/package-info.java | 2 +- ...rtOnColumnOfChangeEquality_HasValues_One_Character_Test.java | 2 +- .../java/org/assertj/db/api/Assertions_BytesContent_Test.java | 2 +- .../java/org/assertj/db/api/Assertions_Constructor_Test.java | 2 +- .../org/assertj/db/api/BDDAssertions_BytesContent_Test.java | 2 +- .../java/org/assertj/db/api/BDDAssertions_Constructor_Test.java | 2 +- src/test/java/org/assertj/db/api/DefaultDescription_Test.java | 2 +- src/test/java/org/assertj/db/api/Descriptable_Test.java | 2 +- .../java/org/assertj/db/api/EntryPointsComparison_Test.java | 2 +- src/test/java/org/assertj/db/api/SoftAssertions_Test.java | 2 +- .../db/api/assertions/AssertOnChangeType_IsCreation_Test.java | 2 +- .../db/api/assertions/AssertOnChangeType_IsDeletion_Test.java | 2 +- .../api/assertions/AssertOnChangeType_IsModification_Test.java | 2 +- .../db/api/assertions/AssertOnChangeType_IsOfType_Test.java | 2 +- .../db/api/assertions/AssertOnColumnClass_IsOfClass_Test.java | 2 +- .../AssertOnColumnContent_ContainsValues_Boolean_Test.java | 2 +- .../AssertOnColumnContent_ContainsValues_Bytes_Test.java | 2 +- .../AssertOnColumnContent_ContainsValues_Character_Test.java | 2 +- ...AssertOnColumnContent_ContainsValues_DateTimeValue_Test.java | 2 +- .../AssertOnColumnContent_ContainsValues_DateValue_Test.java | 2 +- .../AssertOnColumnContent_ContainsValues_Number_Test.java | 2 +- .../AssertOnColumnContent_ContainsValues_String_Test.java | 2 +- .../AssertOnColumnContent_HasValues_TimeValue_Test.java | 2 +- .../assertions/AssertOnColumnContent_HasValues_UUID_Test.java | 2 +- .../AssertOnColumnEquality_HasValues_Boolean_Test.java | 2 +- .../assertions/AssertOnColumnEquality_HasValues_Bytes_Test.java | 2 +- .../AssertOnColumnEquality_HasValues_Character_Test.java | 2 +- .../AssertOnColumnEquality_HasValues_DateTimeValue_Test.java | 2 +- .../AssertOnColumnEquality_HasValues_DateValue_Test.java | 2 +- .../AssertOnColumnEquality_HasValues_Number_Test.java | 2 +- .../AssertOnColumnEquality_HasValues_String_Test.java | 2 +- .../AssertOnColumnEquality_HasValues_TimeValue_Test.java | 2 +- .../assertions/AssertOnColumnEquality_HasValues_UUID_Test.java | 2 +- .../api/assertions/AssertOnColumnName_HasColumnName_Test.java | 2 +- .../AssertOnColumnNullity_HasOnlyNotNullValues_Test.java | 2 +- .../AssertOnColumnNullity_HasOnlyNullValues_Test.java | 2 +- ...sertOnColumnOfChangeEquality_HasValues_One_Boolean_Test.java | 2 +- ...AssertOnColumnOfChangeEquality_HasValues_One_Bytes_Test.java | 2 +- ...ColumnOfChangeEquality_HasValues_One_DateTimeValue_Test.java | 2 +- ...rtOnColumnOfChangeEquality_HasValues_One_DateValue_Test.java | 2 +- ...ssertOnColumnOfChangeEquality_HasValues_One_Number_Test.java | 2 +- ...ssertOnColumnOfChangeEquality_HasValues_One_String_Test.java | 2 +- ...rtOnColumnOfChangeEquality_HasValues_One_TimeValue_Test.java | 2 +- .../AssertOnColumnOfChangeEquality_HasValues_One_UUID_Test.java | 2 +- ...sertOnColumnOfChangeEquality_HasValues_Two_Boolean_Test.java | 2 +- ...AssertOnColumnOfChangeEquality_HasValues_Two_Bytes_Test.java | 2 +- ...rtOnColumnOfChangeEquality_HasValues_Two_Character_Test.java | 2 +- ...ColumnOfChangeEquality_HasValues_Two_DateTimeValue_Test.java | 2 +- ...rtOnColumnOfChangeEquality_HasValues_Two_DateValue_Test.java | 2 +- ...ssertOnColumnOfChangeEquality_HasValues_Two_Number_Test.java | 2 +- ...ssertOnColumnOfChangeEquality_HasValues_Two_String_Test.java | 2 +- ...rtOnColumnOfChangeEquality_HasValues_Two_TimeValue_Test.java | 2 +- .../AssertOnColumnOfChangeEquality_HasValues_Two_UUID_Test.java | 2 +- .../db/api/assertions/AssertOnColumnType_IsBoolean_Test.java | 2 +- .../db/api/assertions/AssertOnColumnType_IsBytes_Test.java | 2 +- .../db/api/assertions/AssertOnColumnType_IsDateTime_Test.java | 2 +- .../db/api/assertions/AssertOnColumnType_IsDate_Test.java | 2 +- .../db/api/assertions/AssertOnColumnType_IsNumber_Test.java | 2 +- .../api/assertions/AssertOnColumnType_IsOfAnyTypeIn_Test.java | 2 +- .../db/api/assertions/AssertOnColumnType_IsOfType_Test.java | 2 +- .../db/api/assertions/AssertOnColumnType_IsText_Test.java | 2 +- .../db/api/assertions/AssertOnColumnType_IsTime_Test.java | 2 +- .../db/api/assertions/AssertOnColumnType_IsUUID_Test.java | 2 +- .../db/api/assertions/AssertOnDataType_IsOnDataType_Test.java | 2 +- .../db/api/assertions/AssertOnDataType_IsOnRequest_Test.java | 2 +- .../db/api/assertions/AssertOnDataType_IsOnTable_Name_Test.java | 2 +- .../db/api/assertions/AssertOnDataType_IsOnTable_Test.java | 2 +- .../db/api/assertions/AssertOnExistence_DoesNotExist_Test.java | 2 +- .../db/api/assertions/AssertOnExistence_Exists_Test.java | 2 +- .../api/assertions/AssertOnModifiedColumn_IsModified_Test.java | 2 +- .../assertions/AssertOnModifiedColumn_IsNotModified_Test.java | 2 +- ...AssertOnModifiedColumns_HasModifiedColumns_Integer_Test.java | 2 +- .../AssertOnModifiedColumns_HasModifiedColumns_String_Test.java | 2 +- ...mns_HasNumberOfModifiedColumnsGreaterThanOrEqualTo_Test.java | 2 +- ...ifiedColumns_HasNumberOfModifiedColumnsGreaterThan_Test.java | 2 +- ...olumns_HasNumberOfModifiedColumnsLessThanOrEqualTo_Test.java | 2 +- ...ModifiedColumns_HasNumberOfModifiedColumnsLessThan_Test.java | 2 +- ...AssertOnModifiedColumns_HasNumberOfModifiedColumns_Test.java | 2 +- ...erOfChanges_HasNumberOfChangesGreaterThanOrEqualTo_Test.java | 2 +- ...ertOnNumberOfChanges_HasNumberOfChangesGreaterThan_Test.java | 2 +- ...umberOfChanges_HasNumberOfChangesLessThanOrEqualTo_Test.java | 2 +- ...AssertOnNumberOfChanges_HasNumberOfChangesLessThan_Test.java | 2 +- .../AssertOnNumberOfChanges_HasNumberOfChanges_Test.java | 2 +- ...erOfColumns_HasNumberOfColumnsGreaterThanOrEqualTo_Test.java | 2 +- ...ertOnNumberOfColumns_HasNumberOfColumnsGreaterThan_Test.java | 2 +- ...umberOfColumns_HasNumberOfColumnsLessThanOrEqualTo_Test.java | 2 +- ...AssertOnNumberOfColumns_HasNumberOfColumnsLessThan_Test.java | 2 +- .../AssertOnNumberOfColumns_HasNumberOfColumns_Test.java | 2 +- ...OnNumberOfRows_HasNumberOfRowsGreaterThanOrEqualTo_Test.java | 2 +- .../AssertOnNumberOfRows_HasNumberOfRowsGreaterThan_Test.java | 2 +- ...ertOnNumberOfRows_HasNumberOfRowsLessThanOrEqualTo_Test.java | 2 +- .../AssertOnNumberOfRows_HasNumberOfRowsLessThan_Test.java | 2 +- .../assertions/AssertOnNumberOfRows_HasNumberOfRows_Test.java | 2 +- .../db/api/assertions/AssertOnNumberOfRows_IsEmpty_Test.java | 2 +- .../db/api/assertions/AssertOnPrimaryKey_HasPksNames_Test.java | 2 +- .../db/api/assertions/AssertOnPrimaryKey_HasPksValues_Test.java | 2 +- .../AssertOnRowCondition_HasValuesSatisfying_Test.java | 2 +- .../db/api/assertions/AssertOnRowEquality_HasValues_Test.java | 2 +- .../AssertOnRowNullity_HasOnlyNotNullValues_Test.java | 2 +- .../AssertOnRowOfChangeExistence_DoesNotExist_Test.java | 2 +- .../assertions/AssertOnRowOfChangeExistence_Exists_Test.java | 2 +- ...rtOnValueChronology_IsAfterOrEqualTo_DateTimeValue_Test.java | 2 +- ...AssertOnValueChronology_IsAfterOrEqualTo_DateValue_Test.java | 2 +- ...rtOnValueChronology_IsAfterOrEqualTo_LocalDateTime_Test.java | 2 +- ...AssertOnValueChronology_IsAfterOrEqualTo_LocalDate_Test.java | 2 +- ...AssertOnValueChronology_IsAfterOrEqualTo_LocalTime_Test.java | 2 +- .../AssertOnValueChronology_IsAfterOrEqualTo_String_Test.java | 2 +- ...AssertOnValueChronology_IsAfterOrEqualTo_TimeValue_Test.java | 2 +- .../AssertOnValueChronology_IsAfter_DateTimeValue_Test.java | 2 +- .../AssertOnValueChronology_IsAfter_DateValue_Test.java | 2 +- .../AssertOnValueChronology_IsAfter_LocalDateTime_Test.java | 2 +- .../AssertOnValueChronology_IsAfter_LocalDate_Test.java | 2 +- .../AssertOnValueChronology_IsAfter_LocalTime_Test.java | 2 +- .../assertions/AssertOnValueChronology_IsAfter_String_Test.java | 2 +- .../AssertOnValueChronology_IsAfter_TimeValue_Test.java | 2 +- ...tOnValueChronology_IsBeforeOrEqualTo_DateTimeValue_Test.java | 2 +- ...ssertOnValueChronology_IsBeforeOrEqualTo_DateValue_Test.java | 2 +- ...tOnValueChronology_IsBeforeOrEqualTo_LocalDateTime_Test.java | 2 +- ...ssertOnValueChronology_IsBeforeOrEqualTo_LocalDate_Test.java | 2 +- ...ssertOnValueChronology_IsBeforeOrEqualTo_LocalTime_Test.java | 2 +- .../AssertOnValueChronology_IsBeforeOrEqualTo_String_Test.java | 2 +- ...ssertOnValueChronology_IsBeforeOrEqualTo_TimeValue_Test.java | 2 +- .../AssertOnValueChronology_IsBefore_DateTimeValue_Test.java | 2 +- .../AssertOnValueChronology_IsBefore_DateValue_Test.java | 2 +- .../AssertOnValueChronology_IsBefore_LocalDateTime_Test.java | 2 +- .../AssertOnValueChronology_IsBefore_LocalDate_Test.java | 2 +- .../AssertOnValueChronology_IsBefore_LocalTime_Test.java | 2 +- .../AssertOnValueChronology_IsBefore_String_Test.java | 2 +- .../AssertOnValueChronology_IsBefore_TimeValue_Test.java | 2 +- .../db/api/assertions/AssertOnValueClass_IsOfClass_Test.java | 2 +- ...lueCloseness_IsCloseTo_DateTimeValue_DateTimeValue_Test.java | 2 +- ...OnValueCloseness_IsCloseTo_DateTimeValue_DateValue_Test.java | 2 +- ...OnValueCloseness_IsCloseTo_DateTimeValue_TimeValue_Test.java | 2 +- ...OnValueCloseness_IsCloseTo_DateValue_DateTimeValue_Test.java | 2 +- ...sertOnValueCloseness_IsCloseTo_DateValue_DateValue_Test.java | 2 +- ...sertOnValueCloseness_IsCloseTo_DateValue_TimeValue_Test.java | 2 +- .../AssertOnValueCloseness_IsCloseTo_Number_Test.java | 2 +- ...sertOnValueCloseness_IsCloseTo_TimeValue_TimeValue_Test.java | 2 +- .../AssertOnValueComparison_IsGreaterThanOrEqualTo_Test.java | 2 +- .../assertions/AssertOnValueComparison_IsGreaterThan_Test.java | 2 +- .../AssertOnValueComparison_IsLessThanOrEqualTo_Test.java | 2 +- .../api/assertions/AssertOnValueComparison_IsLessThan_Test.java | 2 +- .../api/assertions/AssertOnValueCondition_DoesNotHave_Test.java | 2 +- .../db/api/assertions/AssertOnValueCondition_Has_Test.java | 2 +- .../db/api/assertions/AssertOnValueCondition_IsNot_Test.java | 2 +- .../db/api/assertions/AssertOnValueCondition_Is_Test.java | 2 +- .../api/assertions/AssertOnValueCondition_Satisfies_Test.java | 2 +- .../AssertOnValueEquality_IsEqualTo_Boolean_Test.java | 2 +- .../assertions/AssertOnValueEquality_IsEqualTo_Bytes_Test.java | 2 +- .../AssertOnValueEquality_IsEqualTo_Character_Test.java | 2 +- .../AssertOnValueEquality_IsEqualTo_DateTimeValue_Test.java | 2 +- .../AssertOnValueEquality_IsEqualTo_DateValue_Test.java | 2 +- .../AssertOnValueEquality_IsEqualTo_LocalDateTime_Test.java | 2 +- .../AssertOnValueEquality_IsEqualTo_LocalDate_Test.java | 2 +- .../AssertOnValueEquality_IsEqualTo_LocalTime_Test.java | 2 +- .../assertions/AssertOnValueEquality_IsEqualTo_Number_Test.java | 2 +- .../assertions/AssertOnValueEquality_IsEqualTo_Object_Test.java | 2 +- .../assertions/AssertOnValueEquality_IsEqualTo_String_Test.java | 2 +- .../AssertOnValueEquality_IsEqualTo_TimeValue_Test.java | 2 +- .../assertions/AssertOnValueEquality_IsEqualTo_UUID_Test.java | 2 +- .../db/api/assertions/AssertOnValueEquality_IsFalse_Test.java | 2 +- .../db/api/assertions/AssertOnValueEquality_IsTrue_Test.java | 2 +- .../db/api/assertions/AssertOnValueEquality_IsZero_Test.java | 2 +- .../AssertOnValueInequality_IsNotEqualTo_Boolean_Test.java | 2 +- .../AssertOnValueInequality_IsNotEqualTo_Bytes_Test.java | 2 +- .../AssertOnValueInequality_IsNotEqualTo_Character_Test.java | 2 +- ...AssertOnValueInequality_IsNotEqualTo_DateTimeValue_Test.java | 2 +- .../AssertOnValueInequality_IsNotEqualTo_DateValue_Test.java | 2 +- ...AssertOnValueInequality_IsNotEqualTo_LocalDateTime_Test.java | 2 +- .../AssertOnValueInequality_IsNotEqualTo_LocalDate_Test.java | 2 +- .../AssertOnValueInequality_IsNotEqualTo_LocalTime_Test.java | 2 +- .../AssertOnValueInequality_IsNotEqualTo_Number_Test.java | 2 +- .../AssertOnValueInequality_IsNotEqualTo_Object_Test.java | 2 +- .../AssertOnValueInequality_IsNotEqualTo_String_Test.java | 2 +- .../AssertOnValueInequality_IsNotEqualTo_TimeValue_Test.java | 2 +- .../AssertOnValueInequality_IsNotEqualTo_UUID_Test.java | 2 +- .../api/assertions/AssertOnValueInequality_IsNotZero_Test.java | 2 +- .../db/api/assertions/AssertOnValueNullity_IsNotNull_Test.java | 2 +- .../db/api/assertions/AssertOnValueNullity_IsNull_Test.java | 2 +- .../db/api/assertions/AssertOnValueType_IsBoolean_Test.java | 2 +- .../db/api/assertions/AssertOnValueType_IsBytes_Test.java | 2 +- .../db/api/assertions/AssertOnValueType_IsDateTime_Test.java | 2 +- .../db/api/assertions/AssertOnValueType_IsDate_Test.java | 2 +- .../db/api/assertions/AssertOnValueType_IsNumber_Test.java | 2 +- .../db/api/assertions/AssertOnValueType_IsOfAnyTypeIn_Test.java | 2 +- .../db/api/assertions/AssertOnValueType_IsOfType_Test.java | 2 +- .../db/api/assertions/AssertOnValueType_IsText_Test.java | 2 +- .../db/api/assertions/AssertOnValueType_IsTime_Test.java | 2 +- .../db/api/assertions/AssertOnValueType_IsUUID_Test.java | 2 +- .../java/org/assertj/db/api/assertions/BDDAssertions_Test.java | 2 +- .../assertions/impl/AssertionsOnChangeType_IsCreation_Test.java | 2 +- .../assertions/impl/AssertionsOnChangeType_IsDeletion_Test.java | 2 +- .../impl/AssertionsOnChangeType_IsModification_Test.java | 2 +- .../assertions/impl/AssertionsOnChangeType_IsOfType_Test.java | 2 +- .../assertions/impl/AssertionsOnColumnClass_IsOfClass_Test.java | 2 +- .../AssertionsOnColumnContent_ContainsValues_Boolean_Test.java | 2 +- .../AssertionsOnColumnContent_ContainsValues_Bytes_Test.java | 2 +- ...AssertionsOnColumnContent_ContainsValues_Character_Test.java | 2 +- ...rtionsOnColumnContent_ContainsValues_DateTimeValue_Test.java | 2 +- ...AssertionsOnColumnContent_ContainsValues_DateValue_Test.java | 2 +- .../AssertionsOnColumnContent_ContainsValues_Number_Test.java | 2 +- .../AssertionsOnColumnContent_ContainsValues_Object_Test.java | 2 +- .../AssertionsOnColumnContent_ContainsValues_String_Test.java | 2 +- ...AssertionsOnColumnContent_ContainsValues_TimeValue_Test.java | 2 +- .../AssertionsOnColumnContent_ContainsValues_UUID_Test.java | 2 +- .../impl/AssertionsOnColumnEquality_HasValues_Boolean_Test.java | 2 +- .../impl/AssertionsOnColumnEquality_HasValues_Bytes_Test.java | 2 +- .../AssertionsOnColumnEquality_HasValues_Character_Test.java | 2 +- ...AssertionsOnColumnEquality_HasValues_DateTimeValue_Test.java | 2 +- .../AssertionsOnColumnEquality_HasValues_DateValue_Test.java | 2 +- .../impl/AssertionsOnColumnEquality_HasValues_Number_Test.java | 2 +- .../impl/AssertionsOnColumnEquality_HasValues_Object_Test.java | 2 +- .../impl/AssertionsOnColumnEquality_HasValues_String_Test.java | 2 +- .../AssertionsOnColumnEquality_HasValues_TimeValue_Test.java | 2 +- .../impl/AssertionsOnColumnEquality_HasValues_UUID_Test.java | 2 +- .../impl/AssertionsOnColumnName_HasColumnName_Test.java | 2 +- .../impl/AssertionsOnColumnOfChangeClass_IsOfClass_Test.java | 2 +- ...ionsOnColumnOfChangeEquality_HasValues_One_Boolean_Test.java | 2 +- ...rtionsOnColumnOfChangeEquality_HasValues_One_Bytes_Test.java | 2 +- ...nsOnColumnOfChangeEquality_HasValues_One_Character_Test.java | 2 +- ...ColumnOfChangeEquality_HasValues_One_DateTimeValue_Test.java | 2 +- ...nsOnColumnOfChangeEquality_HasValues_One_DateValue_Test.java | 2 +- ...tionsOnColumnOfChangeEquality_HasValues_One_Number_Test.java | 2 +- ...tionsOnColumnOfChangeEquality_HasValues_One_Object_Test.java | 2 +- ...tionsOnColumnOfChangeEquality_HasValues_One_String_Test.java | 2 +- ...nsOnColumnOfChangeEquality_HasValues_One_TimeValue_Test.java | 2 +- ...ertionsOnColumnOfChangeEquality_HasValues_One_UUID_Test.java | 2 +- ...ionsOnColumnOfChangeEquality_HasValues_Two_Boolean_Test.java | 2 +- ...rtionsOnColumnOfChangeEquality_HasValues_Two_Bytes_Test.java | 2 +- ...nsOnColumnOfChangeEquality_HasValues_Two_Character_Test.java | 2 +- ...ColumnOfChangeEquality_HasValues_Two_DateTimeValue_Test.java | 2 +- ...nsOnColumnOfChangeEquality_HasValues_Two_DateValue_Test.java | 2 +- ...tionsOnColumnOfChangeEquality_HasValues_Two_Number_Test.java | 2 +- ...ionsOnColumnOfChangeEquality_HasValues_Two_Objects_Test.java | 2 +- ...tionsOnColumnOfChangeEquality_HasValues_Two_String_Test.java | 2 +- ...nsOnColumnOfChangeEquality_HasValues_Two_TimeValue_Test.java | 2 +- ...ertionsOnColumnOfChangeEquality_HasValues_Two_UUID_Test.java | 2 +- .../impl/AssertionsOnColumnOfChangeType_IsBoolean_Test.java | 2 +- .../impl/AssertionsOnColumnOfChangeType_IsBytes_Test.java | 2 +- .../impl/AssertionsOnColumnOfChangeType_IsDateTime_Test.java | 2 +- .../impl/AssertionsOnColumnOfChangeType_IsDate_Test.java | 2 +- .../impl/AssertionsOnColumnOfChangeType_IsNumber_Test.java | 2 +- .../AssertionsOnColumnOfChangeType_IsOfAnyOfTypes_Test.java | 2 +- .../impl/AssertionsOnColumnOfChangeType_IsOfType_Test.java | 2 +- .../impl/AssertionsOnColumnOfChangeType_IsText_Test.java | 2 +- .../impl/AssertionsOnColumnOfChangeType_IsTime_Test.java | 2 +- .../assertions/impl/AssertionsOnColumnType_IsBoolean_Test.java | 2 +- .../assertions/impl/AssertionsOnColumnType_IsBytes_Test.java | 2 +- .../assertions/impl/AssertionsOnColumnType_IsDateTime_Test.java | 2 +- .../api/assertions/impl/AssertionsOnColumnType_IsDate_Test.java | 2 +- .../assertions/impl/AssertionsOnColumnType_IsNumber_Test.java | 2 +- .../impl/AssertionsOnColumnType_IsOfAnyTypeIn_Test.java | 2 +- .../assertions/impl/AssertionsOnColumnType_IsOfType_Test.java | 2 +- .../api/assertions/impl/AssertionsOnColumnType_IsText_Test.java | 2 +- .../api/assertions/impl/AssertionsOnColumnType_IsTime_Test.java | 2 +- .../api/assertions/impl/AssertionsOnColumnType_IsUUID_Test.java | 2 +- .../assertions/impl/AssertionsOnDataType_IsOnDataType_Test.java | 2 +- .../assertions/impl/AssertionsOnDataType_IsOnRequest_Test.java | 2 +- .../impl/AssertionsOnDataType_IsOnTable_Name_Test.java | 2 +- .../assertions/impl/AssertionsOnDataType_IsOnTable_Test.java | 2 +- .../impl/AssertionsOnModifiedColumn_IsModified_Test.java | 2 +- .../impl/AssertionsOnModifiedColumn_IsNotModified_Test.java | 2 +- ...rtionsOnModifiedColumns_HasModifiedColumns_Integer_Test.java | 2 +- ...ertionsOnModifiedColumns_HasModifiedColumns_String_Test.java | 2 +- ...mns_HasNumberOfModifiedColumnsGreaterThanOrEqualTo_Test.java | 2 +- ...ifiedColumns_HasNumberOfModifiedColumnsGreaterThan_Test.java | 2 +- ...olumns_HasNumberOfModifiedColumnsLessThanOrEqualTo_Test.java | 2 +- ...ModifiedColumns_HasNumberOfModifiedColumnsLessThan_Test.java | 2 +- ...rtionsOnModifiedColumns_HasNumberOfModifiedColumns_Test.java | 2 +- ...erOfChanges_HasNumberOfChangesGreaterThanOrEqualTo_Test.java | 2 +- ...onsOnNumberOfChanges_HasNumberOfChangesGreaterThan_Test.java | 2 +- ...umberOfChanges_HasNumberOfChangesLessThanOrEqualTo_Test.java | 2 +- ...rtionsOnNumberOfChanges_HasNumberOfChangesLessThan_Test.java | 2 +- .../AssertionsOnNumberOfChanges_HasNumberOfChanges_Test.java | 2 +- ...erOfColumns_HasNumberOfColumnsGreaterThanOrEqualTo_Test.java | 2 +- ...onsOnNumberOfColumns_HasNumberOfColumnsGreaterThan_Test.java | 2 +- ...umberOfColumns_HasNumberOfColumnsLessThanOrEqualTo_Test.java | 2 +- ...rtionsOnNumberOfColumns_HasNumberOfColumnsLessThan_Test.java | 2 +- .../AssertionsOnNumberOfColumns_HasNumberOfColumns_Test.java | 2 +- ...OnNumberOfRows_HasNumberOfRowsGreaterThanOrEqualTo_Test.java | 2 +- ...ssertionsOnNumberOfRows_HasNumberOfRowsGreaterThan_Test.java | 2 +- ...onsOnNumberOfRows_HasNumberOfRowsLessThanOrEqualTo_Test.java | 2 +- .../AssertionsOnNumberOfRows_HasNumberOfRowsLessThan_Test.java | 2 +- .../impl/AssertionsOnNumberOfRows_HasNumberOfRows_Test.java | 2 +- .../impl/AssertionsOnPrimaryKey_HasPksNames_Test.java | 2 +- .../impl/AssertionsOnPrimaryKey_HasPksValues_Test.java | 2 +- .../AssertionsOnRowCondition_HasValues_Satisfying_Test.java | 2 +- .../assertions/impl/AssertionsOnRowEquality_HasValues_Test.java | 2 +- .../AssertionsOnRowOfChangeExistence_DoesNotExist_Test.java | 2 +- .../impl/AssertionsOnRowOfChangeExistence_Exists_Test.java | 2 +- .../impl/AssertionsOnTableExistence_DoesNotExist_Test.java | 2 +- .../assertions/impl/AssertionsOnTableExistence_Exists_Test.java | 2 +- ...nsOnValueChronology_IsAfterOrEqualTo_DateTimeValue_Test.java | 2 +- ...rtionsOnValueChronology_IsAfterOrEqualTo_DateValue_Test.java | 2 +- ...ssertionsOnValueChronology_IsAfterOrEqualTo_String_Test.java | 2 +- ...rtionsOnValueChronology_IsAfterOrEqualTo_TimeValue_Test.java | 2 +- .../AssertionsOnValueChronology_IsAfter_DateTimeValue_Test.java | 2 +- .../AssertionsOnValueChronology_IsAfter_DateValue_Test.java | 2 +- .../impl/AssertionsOnValueChronology_IsAfter_String_Test.java | 2 +- .../AssertionsOnValueChronology_IsAfter_TimeValue_Test.java | 2 +- ...sOnValueChronology_IsBeforeOrEqualTo_DateTimeValue_Test.java | 2 +- ...tionsOnValueChronology_IsBeforeOrEqualTo_DateValue_Test.java | 2 +- ...sertionsOnValueChronology_IsBeforeOrEqualTo_String_Test.java | 2 +- ...tionsOnValueChronology_IsBeforeOrEqualTo_TimeValue_Test.java | 2 +- ...AssertionsOnValueChronology_IsBefore_DateTimeValue_Test.java | 2 +- .../AssertionsOnValueChronology_IsBefore_DateValue_Test.java | 2 +- .../impl/AssertionsOnValueChronology_IsBefore_String_Test.java | 2 +- .../AssertionsOnValueChronology_IsBefore_TimeValue_Test.java | 2 +- .../assertions/impl/AssertionsOnValueClass_IsOfClass_Test.java | 2 +- ...lueCloseness_IsCloseTo_DateTimeValue_DateTimeValue_Test.java | 2 +- ...OnValueCloseness_IsCloseTo_DateTimeValue_DateValue_Test.java | 2 +- ...OnValueCloseness_IsCloseTo_DateTimeValue_TimeValue_Test.java | 2 +- ...OnValueCloseness_IsCloseTo_DateValue_DateTimeValue_Test.java | 2 +- ...ionsOnValueCloseness_IsCloseTo_DateValue_DateValue_Test.java | 2 +- ...ionsOnValueCloseness_IsCloseTo_DateValue_TimeValue_Test.java | 2 +- .../impl/AssertionsOnValueCloseness_IsCloseTo_Number_Test.java | 2 +- ...ionsOnValueCloseness_IsCloseTo_TimeValue_TimeValue_Test.java | 2 +- ...AssertionsOnValueComparison_IsGreaterThanOrEqualTo_Test.java | 2 +- .../impl/AssertionsOnValueComparison_IsGreaterThan_Test.java | 2 +- .../AssertionsOnValueComparison_IsLessThanOrEqualTo_Test.java | 2 +- .../impl/AssertionsOnValueComparison_IsLessThan_Test.java | 2 +- .../assertions/impl/AssertionsOnValueCondition_IsNot_Test.java | 2 +- .../api/assertions/impl/AssertionsOnValueCondition_Is_Test.java | 2 +- .../impl/AssertionsOnValueEquality_IsEqualTo_Boolean_Test.java | 2 +- .../impl/AssertionsOnValueEquality_IsEqualTo_Bytes_Test.java | 2 +- .../AssertionsOnValueEquality_IsEqualTo_Character_Test.java | 2 +- .../AssertionsOnValueEquality_IsEqualTo_DateTimeValue_Test.java | 2 +- .../AssertionsOnValueEquality_IsEqualTo_DateValue_Test.java | 2 +- .../impl/AssertionsOnValueEquality_IsEqualTo_Number_Test.java | 2 +- .../impl/AssertionsOnValueEquality_IsEqualTo_Object_Test.java | 2 +- .../impl/AssertionsOnValueEquality_IsEqualTo_String_Test.java | 2 +- .../AssertionsOnValueEquality_IsEqualTo_TimeValue_Test.java | 2 +- .../impl/AssertionsOnValueEquality_IsEqualTo_UUID_Test.java | 2 +- .../assertions/impl/AssertionsOnValueEquality_IsFalse_Test.java | 2 +- .../assertions/impl/AssertionsOnValueEquality_IsTrue_Test.java | 2 +- .../assertions/impl/AssertionsOnValueEquality_IsZero_Test.java | 2 +- .../AssertionsOnValueInequality_IsNotEqualTo_Boolean_Test.java | 2 +- .../AssertionsOnValueInequality_IsNotEqualTo_Bytes_Test.java | 2 +- ...AssertionsOnValueInequality_IsNotEqualTo_Character_Test.java | 2 +- ...rtionsOnValueInequality_IsNotEqualTo_DateTimeValue_Test.java | 2 +- ...AssertionsOnValueInequality_IsNotEqualTo_DateValue_Test.java | 2 +- .../AssertionsOnValueInequality_IsNotEqualTo_Number_Test.java | 2 +- .../AssertionsOnValueInequality_IsNotEqualTo_Object_Test.java | 2 +- .../AssertionsOnValueInequality_IsNotEqualTo_String_Test.java | 2 +- ...AssertionsOnValueInequality_IsNotEqualTo_TimeValue_Test.java | 2 +- .../AssertionsOnValueInequality_IsNotEqualTo_UUID_Test.java | 2 +- .../impl/AssertionsOnValueInequality_IsNotZero_Test.java | 2 +- .../impl/AssertionsOnValueNullity_IsNotNull_Test.java | 2 +- .../assertions/impl/AssertionsOnValueNullity_IsNull_Test.java | 2 +- .../assertions/impl/AssertionsOnValueType_IsBoolean_Test.java | 2 +- .../api/assertions/impl/AssertionsOnValueType_IsBytes_Test.java | 2 +- .../assertions/impl/AssertionsOnValueType_IsDateTime_Test.java | 2 +- .../api/assertions/impl/AssertionsOnValueType_IsDate_Test.java | 2 +- .../assertions/impl/AssertionsOnValueType_IsNumber_Test.java | 2 +- .../impl/AssertionsOnValueType_IsOfAnyTypeIn_Test.java | 2 +- .../assertions/impl/AssertionsOnValueType_IsOfType_Test.java | 2 +- .../api/assertions/impl/AssertionsOnValueType_IsText_Test.java | 2 +- .../api/assertions/impl/AssertionsOnValueType_IsTime_Test.java | 2 +- .../api/assertions/impl/AssertionsOnValueType_IsUUID_Test.java | 2 +- .../AssertionsOnValuesNullity_HasOnlyNotNullValues_Test.java | 2 +- .../impl/AssertionsOnValuesNullity_HasOnlyNullValues_Test.java | 2 +- .../constructor/AssertionsOnChangeType_Constructor_Test.java | 2 +- .../constructor/AssertionsOnColumnClass_Constructor_Test.java | 2 +- .../constructor/AssertionsOnColumnContent_Constructor_Test.java | 2 +- .../AssertionsOnColumnEquality_Constructor_Test.java | 2 +- .../constructor/AssertionsOnColumnName_Constructor_Test.java | 2 +- .../AssertionsOnColumnOfChangeClass_Constructor_Test.java | 2 +- .../AssertionsOnColumnOfChangeEquality_Constructor_Test.java | 2 +- .../AssertionsOnColumnOfChangeType_Constructor_Test.java | 2 +- .../constructor/AssertionsOnColumnType_Constructor_Test.java | 2 +- .../impl/constructor/AssertionsOnDataType_Constructor_Test.java | 2 +- .../AssertionsOnModifiedColumn_Constructor_Test.java | 2 +- .../AssertionsOnModifiedColumns_Constructor_Test.java | 2 +- .../AssertionsOnNumberOfChanges_Constructor_Test.java | 2 +- .../AssertionsOnNumberOfColumns_Constructor_Test.java | 2 +- .../constructor/AssertionsOnNumberOfRows_Constructor_Test.java | 2 +- .../constructor/AssertionsOnPrimaryKey_Constructor_Test.java | 2 +- .../constructor/AssertionsOnRowEquality_Constructor_Test.java | 2 +- .../AssertionsOnRowOfChangeExistence_Constructor_Test.java | 2 +- .../AssertionsOnValueChronology_Constructor_Test.java | 2 +- .../constructor/AssertionsOnValueClass_Constructor_Test.java | 2 +- .../AssertionsOnValueCloseness_Constructor_Test.java | 2 +- .../AssertionsOnValueComparison_Constructor_Test.java | 2 +- .../constructor/AssertionsOnValueEquality_Constructor_Test.java | 2 +- .../AssertionsOnValueNonEquality_Constructor_Test.java | 2 +- .../constructor/AssertionsOnValueNullity_Constructor_Test.java | 2 +- .../constructor/AssertionsOnValueType_Constructor_Test.java | 2 +- .../constructor/AssertionsOnValuesNullity_Constructor_Test.java | 2 +- src/test/java/org/assertj/db/common/AbstractTest.java | 2 +- src/test/java/org/assertj/db/common/DefaultConnection.java | 2 +- src/test/java/org/assertj/db/common/DefaultDataSource.java | 2 +- .../java/org/assertj/db/common/DefaultPreparedStatement.java | 2 +- src/test/java/org/assertj/db/common/DefaultResultSet.java | 2 +- src/test/java/org/assertj/db/common/DefaultStatement.java | 2 +- src/test/java/org/assertj/db/common/NeedReload.java | 2 +- .../java/org/assertj/db/configuration/TestsConfiguration.java | 2 +- src/test/java/org/assertj/db/database/AbstractDatabaseTest.java | 2 +- .../java/org/assertj/db/database/derby/DerbyConfiguration.java | 2 +- src/test/java/org/assertj/db/database/h2/AbstractH2Test.java | 2 +- .../java/org/assertj/db/database/h2/AbstractReservedH2Test.java | 2 +- src/test/java/org/assertj/db/database/h2/H2Configuration.java | 2 +- .../org/assertj/db/database/h2/H2DataBase_Source_DDD_Test.java | 2 +- src/test/java/org/assertj/db/database/h2/H2DataBase_Test.java | 2 +- .../assertj/db/database/h2/H2Database_DataSource_DDD_Test.java | 2 +- .../db/database/h2/H2Database_DataSource_NSNSNS_Test.java | 2 +- .../db/database/h2/H2Database_DataSource_UIUIUI_Test.java | 2 +- .../assertj/db/database/h2/H2Database_Source_NSNSNS_Test.java | 2 +- .../assertj/db/database/h2/H2Database_Source_UIUIUI_Test.java | 2 +- .../org/assertj/db/database/h2/ReservedH2Configuration.java | 2 +- .../org/assertj/db/database/h2/ReservedH2DataBase_Test.java | 2 +- .../db/database/h2/ReservedH2Database_DataSource_DDD_Test.java | 2 +- .../database/h2/ReservedH2Database_DataSource_NSNSNS_Test.java | 2 +- .../database/h2/ReservedH2Database_DataSource_UIUIUI_Test.java | 2 +- .../db/database/h2/ReservedH2Database_Source_DDD_Test.java | 2 +- .../db/database/h2/ReservedH2Database_Source_NSNSNS_Test.java | 2 +- .../db/database/h2/ReservedH2Database_Source_UIUIUI_Test.java | 2 +- .../java/org/assertj/db/database/hsqldb/AbstractHsqldbTest.java | 2 +- .../org/assertj/db/database/hsqldb/HsqldbConfiguration.java | 2 +- .../org/assertj/db/database/hsqldb/HsqldbDataBase_Test.java | 2 +- .../db/database/hsqldb/HsqldbDatabase_Source_UIUIUI_Test.java | 2 +- .../java/org/assertj/db/database/sqlite/AbstractSqliteTest.java | 2 +- .../org/assertj/db/database/sqlite/SqliteConfiguration.java | 2 +- .../org/assertj/db/database/sqlite/SqliteDataBase_Test.java | 2 +- .../db/database/sqlite/SqliteDatabase_DataSource_DDD_Test.java | 2 +- .../database/sqlite/SqliteDatabase_DataSource_NSNSNS_Test.java | 2 +- .../database/sqlite/SqliteDatabase_DataSource_UIUIUI_Test.java | 2 +- .../db/database/sqlite/SqliteDatabase_Source_DDD_Test.java | 2 +- .../db/database/sqlite/SqliteDatabase_Source_NSNSNS_Test.java | 2 +- .../db/database/sqlite/SqliteDatabase_Source_UIUIUI_Test.java | 2 +- .../java/org/assertj/db/navigation/InstantiationError_Test.java | 2 +- .../java/org/assertj/db/navigation/ReturnToOrigin_Test.java | 2 +- .../ToChange_ChangeOfCreationOnTable_Integer_Test.java | 2 +- .../db/navigation/ToChange_ChangeOfCreationOnTable_Test.java | 2 +- .../db/navigation/ToChange_ChangeOfCreation_Integer_Test.java | 2 +- .../assertj/db/navigation/ToChange_ChangeOfCreation_Test.java | 2 +- .../ToChange_ChangeOfDeletionOnTable_Integer_Test.java | 2 +- .../db/navigation/ToChange_ChangeOfDeletionOnTable_Test.java | 2 +- .../db/navigation/ToChange_ChangeOfDeletion_Integer_Test.java | 2 +- .../assertj/db/navigation/ToChange_ChangeOfDeletion_Test.java | 2 +- .../ToChange_ChangeOfModificationOnTable_Integer_Test.java | 2 +- .../navigation/ToChange_ChangeOfModificationOnTable_Test.java | 2 +- .../navigation/ToChange_ChangeOfModification_Integer_Test.java | 2 +- .../db/navigation/ToChange_ChangeOfModification_Test.java | 2 +- .../db/navigation/ToChange_ChangeOnTableWithPks_Test.java | 2 +- .../db/navigation/ToChange_ChangeOnTable_Integer_Test.java | 2 +- .../org/assertj/db/navigation/ToChange_ChangeOnTable_Test.java | 2 +- .../org/assertj/db/navigation/ToChange_Change_Integer_Test.java | 2 +- .../java/org/assertj/db/navigation/ToChange_Change_Test.java | 2 +- src/test/java/org/assertj/db/navigation/ToChange_Test.java | 2 +- src/test/java/org/assertj/db/navigation/ToChanges_Test.java | 2 +- ...olumnFromChange_ColumnAmongTheModifiedOnes_Integer_Test.java | 2 +- ...ColumnFromChange_ColumnAmongTheModifiedOnes_String_Test.java | 2 +- .../ToColumnFromChange_ColumnAmongTheModifiedOnes_Test.java | 2 +- .../org/assertj/db/navigation/ToColumn_Column_Integer_Test.java | 2 +- .../org/assertj/db/navigation/ToColumn_Column_String_Test.java | 2 +- .../java/org/assertj/db/navigation/ToColumn_Column_Test.java | 2 +- .../db/navigation/ToRowFromChange_RowAtEndPoint_Test.java | 2 +- .../db/navigation/ToRowFromChange_RowAtStartPoint_Test.java | 2 +- .../java/org/assertj/db/navigation/ToRow_Row_Integer_Test.java | 2 +- src/test/java/org/assertj/db/navigation/ToRow_Row_Test.java | 2 +- .../db/navigation/ToValueFromColumn_ValueAtEndPoint_Test.java | 2 +- .../db/navigation/ToValueFromColumn_ValueAtStartPoint_Test.java | 2 +- .../assertj/db/navigation/ToValueFromRow_Value_String_Test.java | 2 +- .../org/assertj/db/navigation/ToValue_Value_Integer_Test.java | 2 +- src/test/java/org/assertj/db/navigation/ToValue_Value_Test.java | 2 +- .../java/org/assertj/db/output/Outputs_Constructor_Test.java | 2 +- src/test/java/org/assertj/db/output/OutputterChange_Test.java | 2 +- src/test/java/org/assertj/db/output/OutputterChanges_Test.java | 2 +- src/test/java/org/assertj/db/output/OutputterColumn_Test.java | 2 +- .../java/org/assertj/db/output/OutputterException_Test.java | 2 +- src/test/java/org/assertj/db/output/OutputterRequest_Test.java | 2 +- src/test/java/org/assertj/db/output/OutputterRow_Test.java | 2 +- src/test/java/org/assertj/db/output/OutputterTable_Test.java | 2 +- .../java/org/assertj/db/output/OutputterToConsole_Test.java | 2 +- src/test/java/org/assertj/db/output/OutputterToFile_Test.java | 2 +- src/test/java/org/assertj/db/output/OutputterToStream_Test.java | 2 +- src/test/java/org/assertj/db/output/OutputterValue_Test.java | 2 +- src/test/java/org/assertj/db/output/impl/HtmlOutput_Test.java | 2 +- .../org/assertj/db/output/impl/HtmlOutput_ValueOf_Test.java | 2 +- .../org/assertj/db/output/impl/OutputType_ValueOf_Test.java | 2 +- src/test/java/org/assertj/db/output/impl/PlainOutput_Test.java | 2 +- .../org/assertj/db/output/impl/PlainOutput_ValueOf_Test.java | 2 +- .../org/assertj/db/type/AbstractDbElement_Exception_Test.java | 2 +- src/test/java/org/assertj/db/type/ChangeType_ValueOf_Test.java | 2 +- src/test/java/org/assertj/db/type/Change_Exception_Test.java | 2 +- src/test/java/org/assertj/db/type/Change_GetDataType_Test.java | 2 +- src/test/java/org/assertj/db/type/Changes_Constructor_Test.java | 2 +- src/test/java/org/assertj/db/type/Changes_Exception_Test.java | 2 +- .../org/assertj/db/type/Changes_GetChangesOfTable_Test.java | 2 +- .../java/org/assertj/db/type/Changes_GetChangesOfType_Test.java | 2 +- src/test/java/org/assertj/db/type/Changes_GetChanges_Test.java | 2 +- .../assertj/db/type/Changes_Request_GetChangesList_Test.java | 2 +- src/test/java/org/assertj/db/type/Changes_SetTables_Test.java | 2 +- .../org/assertj/db/type/Changes_Table_GetChangesList_Test.java | 2 +- .../java/org/assertj/db/type/DataSourceWithLetterCase_Test.java | 2 +- src/test/java/org/assertj/db/type/DataType_ValueOf_Test.java | 2 +- src/test/java/org/assertj/db/type/DateTimeValue_Test.java | 2 +- src/test/java/org/assertj/db/type/DateValue_Test.java | 2 +- src/test/java/org/assertj/db/type/OrderType_ValueOf_Test.java | 2 +- src/test/java/org/assertj/db/type/Order_Equals_Test.java | 2 +- .../java/org/assertj/db/type/Request_Columns_Name_Test.java | 2 +- src/test/java/org/assertj/db/type/Request_Columns_Test.java | 2 +- src/test/java/org/assertj/db/type/Request_Exception_Test.java | 2 +- .../org/assertj/db/type/Request_GetRowFromPksValues_Test.java | 2 +- src/test/java/org/assertj/db/type/Request_Getters_Test.java | 2 +- .../java/org/assertj/db/type/Request_Instantiation_Test.java | 2 +- .../java/org/assertj/db/type/Request_PrimaryKeys_Name_Test.java | 2 +- src/test/java/org/assertj/db/type/Request_Rows_Test.java | 2 +- src/test/java/org/assertj/db/type/Row_GetPksNameList_Test.java | 2 +- src/test/java/org/assertj/db/type/Row_GetPksValues_Test.java | 2 +- .../java/org/assertj/db/type/Row_Has_PksValuesEqualTo_Test.java | 2 +- src/test/java/org/assertj/db/type/Table_Columns_Name_Test.java | 2 +- src/test/java/org/assertj/db/type/Table_Columns_Test.java | 2 +- src/test/java/org/assertj/db/type/Table_Exception_Test.java | 2 +- .../org/assertj/db/type/Table_GetRowFromPksValues_Test.java | 2 +- src/test/java/org/assertj/db/type/Table_Getters_Test.java | 2 +- src/test/java/org/assertj/db/type/Table_Instantiation_Test.java | 2 +- .../java/org/assertj/db/type/Table_PrimaryKeys_Name_Test.java | 2 +- src/test/java/org/assertj/db/type/Table_Rows_Test.java | 2 +- src/test/java/org/assertj/db/type/TimeValue_Test.java | 2 +- .../db/type/ValueType_GetPossibleTypesForComparison_Test.java | 2 +- src/test/java/org/assertj/db/type/ValueType_GetType_Test.java | 2 +- src/test/java/org/assertj/db/type/ValueType_ValueOf_Test.java | 2 +- .../org/assertj/db/type/Value_IsComparisonPossible_Test.java | 2 +- .../org/assertj/db/type/lettercase/CaseComparisons_Test.java | 2 +- .../db/type/lettercase/CaseComparisons_ValueOf_Test.java | 2 +- .../org/assertj/db/type/lettercase/CaseConversions_Test.java | 2 +- .../db/type/lettercase/CaseConversions_ValueOf_Test.java | 2 +- .../assertj/db/type/lettercase/LetterCase_Exception_Test.java | 2 +- .../java/org/assertj/db/type/lettercase/LetterCase_Test.java | 2 +- .../db/util/AssertionsOnChangeColumn_Constructor_Test.java | 2 +- .../assertj/db/util/AssertionsOnChange_Constructor_Test.java | 2 +- .../assertj/db/util/AssertionsOnChanges_Constructor_Test.java | 2 +- .../assertj/db/util/AssertionsOnColumn_Constructor_Test.java | 2 +- .../org/assertj/db/util/AssertionsOnRow_Constructor_Test.java | 2 +- .../org/assertj/db/util/AssertionsOnValue_Constructor_Test.java | 2 +- src/test/java/org/assertj/db/util/ChangeComparator_Test.java | 2 +- src/test/java/org/assertj/db/util/Changes_Constructor_Test.java | 2 +- .../db/util/Changes_GetIndexesOfModifiedColumns_Test.java | 2 +- .../java/org/assertj/db/util/Descriptions_Constructor_Test.java | 2 +- .../org/assertj/db/util/Descriptions_GetDescription_Test.java | 2 +- src/test/java/org/assertj/db/util/NameComparator_Test.java | 2 +- src/test/java/org/assertj/db/util/Proxies_Test.java | 2 +- src/test/java/org/assertj/db/util/RowComparator_Test.java | 2 +- .../db/util/Values_AreClose_Value_And_DateTimeValue_Test.java | 2 +- .../db/util/Values_AreClose_Value_And_DateValue_Test.java | 2 +- .../assertj/db/util/Values_AreClose_Value_And_Number_Test.java | 2 +- .../assertj/db/util/Values_AreClose_Value_TimeValue_Test.java | 2 +- .../db/util/Values_AreEqual_DateTime_And_String_Test.java | 2 +- .../assertj/db/util/Values_AreEqual_Date_And_String_Test.java | 2 +- .../assertj/db/util/Values_AreEqual_Number_And_String_Test.java | 2 +- .../assertj/db/util/Values_AreEqual_Time_And_String_Test.java | 2 +- .../assertj/db/util/Values_AreEqual_UUID_And_String_Test.java | 2 +- .../assertj/db/util/Values_AreEqual_Value_And_Boolean_Test.java | 2 +- .../assertj/db/util/Values_AreEqual_Value_And_Bytes_Test.java | 2 +- .../db/util/Values_AreEqual_Value_And_Character_Test.java | 2 +- .../db/util/Values_AreEqual_Value_And_DateTimeValue_Test.java | 2 +- .../db/util/Values_AreEqual_Value_And_DateValue_Test.java | 2 +- .../assertj/db/util/Values_AreEqual_Value_And_Number_Test.java | 2 +- .../assertj/db/util/Values_AreEqual_Value_And_Object_Test.java | 2 +- .../assertj/db/util/Values_AreEqual_Value_And_String_Test.java | 2 +- .../assertj/db/util/Values_AreEqual_Value_And_UUID_Test.java | 2 +- .../assertj/db/util/Values_AreEqual_Value_TimeValue_Test.java | 2 +- .../assertj/db/util/Values_Compare_Value_And_Number_Test.java | 2 +- src/test/java/org/assertj/db/util/Values_Constructor_Test.java | 2 +- .../db/util/Values_GetOutputFromValueInFrontOfClass_Test.java | 2 +- .../util/Values_GetOutputFromValueInFrontOfExpected_Test.java | 2 +- ...lues_GetRepresentationsFromValuesInFrontOfExpected_Test.java | 2 +- 833 files changed, 833 insertions(+), 833 deletions(-) diff --git a/src/main/java/org/assertj/db/api/AbstractAssert.java b/src/main/java/org/assertj/db/api/AbstractAssert.java index a4c75082..11a774b6 100644 --- a/src/main/java/org/assertj/db/api/AbstractAssert.java +++ b/src/main/java/org/assertj/db/api/AbstractAssert.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.api; diff --git a/src/main/java/org/assertj/db/api/AbstractAssertWithOrigin.java b/src/main/java/org/assertj/db/api/AbstractAssertWithOrigin.java index fd9eb924..fa5fadf7 100644 --- a/src/main/java/org/assertj/db/api/AbstractAssertWithOrigin.java +++ b/src/main/java/org/assertj/db/api/AbstractAssertWithOrigin.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.api; diff --git a/src/main/java/org/assertj/db/api/AbstractAssertWithOriginWithChanges.java b/src/main/java/org/assertj/db/api/AbstractAssertWithOriginWithChanges.java index a7ef51d4..539d161a 100644 --- a/src/main/java/org/assertj/db/api/AbstractAssertWithOriginWithChanges.java +++ b/src/main/java/org/assertj/db/api/AbstractAssertWithOriginWithChanges.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.api; diff --git a/src/main/java/org/assertj/db/api/AbstractAssertWithOriginWithColumnsAndRows.java b/src/main/java/org/assertj/db/api/AbstractAssertWithOriginWithColumnsAndRows.java index 1b46a083..217b86df 100644 --- a/src/main/java/org/assertj/db/api/AbstractAssertWithOriginWithColumnsAndRows.java +++ b/src/main/java/org/assertj/db/api/AbstractAssertWithOriginWithColumnsAndRows.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.api; diff --git a/src/main/java/org/assertj/db/api/AbstractAssertWithOriginWithColumnsAndRowsFromChange.java b/src/main/java/org/assertj/db/api/AbstractAssertWithOriginWithColumnsAndRowsFromChange.java index af0e2995..7fe7ba8c 100644 --- a/src/main/java/org/assertj/db/api/AbstractAssertWithOriginWithColumnsAndRowsFromChange.java +++ b/src/main/java/org/assertj/db/api/AbstractAssertWithOriginWithColumnsAndRowsFromChange.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.api; diff --git a/src/main/java/org/assertj/db/api/AbstractAssertWithValues.java b/src/main/java/org/assertj/db/api/AbstractAssertWithValues.java index 1ed1df2e..e6962d1e 100644 --- a/src/main/java/org/assertj/db/api/AbstractAssertWithValues.java +++ b/src/main/java/org/assertj/db/api/AbstractAssertWithValues.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.api; diff --git a/src/main/java/org/assertj/db/api/AbstractColumnAssert.java b/src/main/java/org/assertj/db/api/AbstractColumnAssert.java index a9a987c0..ff17d48a 100644 --- a/src/main/java/org/assertj/db/api/AbstractColumnAssert.java +++ b/src/main/java/org/assertj/db/api/AbstractColumnAssert.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.api; diff --git a/src/main/java/org/assertj/db/api/AbstractColumnValueAssert.java b/src/main/java/org/assertj/db/api/AbstractColumnValueAssert.java index bb40ee0a..7eba2aef 100644 --- a/src/main/java/org/assertj/db/api/AbstractColumnValueAssert.java +++ b/src/main/java/org/assertj/db/api/AbstractColumnValueAssert.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.api; diff --git a/src/main/java/org/assertj/db/api/AbstractDbAssert.java b/src/main/java/org/assertj/db/api/AbstractDbAssert.java index fc0d5178..f0bc5521 100644 --- a/src/main/java/org/assertj/db/api/AbstractDbAssert.java +++ b/src/main/java/org/assertj/db/api/AbstractDbAssert.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.api; diff --git a/src/main/java/org/assertj/db/api/AbstractRowAssert.java b/src/main/java/org/assertj/db/api/AbstractRowAssert.java index 3c149ec2..2659afab 100644 --- a/src/main/java/org/assertj/db/api/AbstractRowAssert.java +++ b/src/main/java/org/assertj/db/api/AbstractRowAssert.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.api; diff --git a/src/main/java/org/assertj/db/api/AbstractRowValueAssert.java b/src/main/java/org/assertj/db/api/AbstractRowValueAssert.java index 32e5390d..ffd0f9fd 100644 --- a/src/main/java/org/assertj/db/api/AbstractRowValueAssert.java +++ b/src/main/java/org/assertj/db/api/AbstractRowValueAssert.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.api; diff --git a/src/main/java/org/assertj/db/api/AbstractSoftAssertions.java b/src/main/java/org/assertj/db/api/AbstractSoftAssertions.java index 51f3a7d5..a3c7f6aa 100644 --- a/src/main/java/org/assertj/db/api/AbstractSoftAssertions.java +++ b/src/main/java/org/assertj/db/api/AbstractSoftAssertions.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.api; diff --git a/src/main/java/org/assertj/db/api/AbstractSubAssert.java b/src/main/java/org/assertj/db/api/AbstractSubAssert.java index 00132749..87b39da1 100644 --- a/src/main/java/org/assertj/db/api/AbstractSubAssert.java +++ b/src/main/java/org/assertj/db/api/AbstractSubAssert.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.api; diff --git a/src/main/java/org/assertj/db/api/AbstractValueAssert.java b/src/main/java/org/assertj/db/api/AbstractValueAssert.java index 4ab634d6..d80b7139 100644 --- a/src/main/java/org/assertj/db/api/AbstractValueAssert.java +++ b/src/main/java/org/assertj/db/api/AbstractValueAssert.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.api; diff --git a/src/main/java/org/assertj/db/api/Assertions.java b/src/main/java/org/assertj/db/api/Assertions.java index 8941e305..20d3e903 100644 --- a/src/main/java/org/assertj/db/api/Assertions.java +++ b/src/main/java/org/assertj/db/api/Assertions.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.api; diff --git a/src/main/java/org/assertj/db/api/BDDAssertions.java b/src/main/java/org/assertj/db/api/BDDAssertions.java index d6c42a18..13d40748 100644 --- a/src/main/java/org/assertj/db/api/BDDAssertions.java +++ b/src/main/java/org/assertj/db/api/BDDAssertions.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.api; diff --git a/src/main/java/org/assertj/db/api/ChangeAssert.java b/src/main/java/org/assertj/db/api/ChangeAssert.java index d1c1fd83..d2171267 100644 --- a/src/main/java/org/assertj/db/api/ChangeAssert.java +++ b/src/main/java/org/assertj/db/api/ChangeAssert.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.api; diff --git a/src/main/java/org/assertj/db/api/ChangeColumnAssert.java b/src/main/java/org/assertj/db/api/ChangeColumnAssert.java index 4e472232..18b81950 100644 --- a/src/main/java/org/assertj/db/api/ChangeColumnAssert.java +++ b/src/main/java/org/assertj/db/api/ChangeColumnAssert.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.api; diff --git a/src/main/java/org/assertj/db/api/ChangeColumnValueAssert.java b/src/main/java/org/assertj/db/api/ChangeColumnValueAssert.java index 555afd7c..e3b0d8e9 100644 --- a/src/main/java/org/assertj/db/api/ChangeColumnValueAssert.java +++ b/src/main/java/org/assertj/db/api/ChangeColumnValueAssert.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.api; diff --git a/src/main/java/org/assertj/db/api/ChangeRowAssert.java b/src/main/java/org/assertj/db/api/ChangeRowAssert.java index 63c595b7..698b4314 100644 --- a/src/main/java/org/assertj/db/api/ChangeRowAssert.java +++ b/src/main/java/org/assertj/db/api/ChangeRowAssert.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.api; diff --git a/src/main/java/org/assertj/db/api/ChangeRowValueAssert.java b/src/main/java/org/assertj/db/api/ChangeRowValueAssert.java index 669f193b..1dc5a050 100644 --- a/src/main/java/org/assertj/db/api/ChangeRowValueAssert.java +++ b/src/main/java/org/assertj/db/api/ChangeRowValueAssert.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.api; diff --git a/src/main/java/org/assertj/db/api/ChangesAssert.java b/src/main/java/org/assertj/db/api/ChangesAssert.java index 8ce42f33..2e87f13a 100644 --- a/src/main/java/org/assertj/db/api/ChangesAssert.java +++ b/src/main/java/org/assertj/db/api/ChangesAssert.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.api; diff --git a/src/main/java/org/assertj/db/api/ErrorCollector.java b/src/main/java/org/assertj/db/api/ErrorCollector.java index dc192321..fc179da4 100644 --- a/src/main/java/org/assertj/db/api/ErrorCollector.java +++ b/src/main/java/org/assertj/db/api/ErrorCollector.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.api; diff --git a/src/main/java/org/assertj/db/api/ProxifyPositionResult.java b/src/main/java/org/assertj/db/api/ProxifyPositionResult.java index 8a52c57f..31c15575 100644 --- a/src/main/java/org/assertj/db/api/ProxifyPositionResult.java +++ b/src/main/java/org/assertj/db/api/ProxifyPositionResult.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.api; diff --git a/src/main/java/org/assertj/db/api/RequestAssert.java b/src/main/java/org/assertj/db/api/RequestAssert.java index 126b2a1c..76af606b 100644 --- a/src/main/java/org/assertj/db/api/RequestAssert.java +++ b/src/main/java/org/assertj/db/api/RequestAssert.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.api; diff --git a/src/main/java/org/assertj/db/api/RequestColumnAssert.java b/src/main/java/org/assertj/db/api/RequestColumnAssert.java index 405fa135..1e198160 100644 --- a/src/main/java/org/assertj/db/api/RequestColumnAssert.java +++ b/src/main/java/org/assertj/db/api/RequestColumnAssert.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.api; diff --git a/src/main/java/org/assertj/db/api/RequestColumnValueAssert.java b/src/main/java/org/assertj/db/api/RequestColumnValueAssert.java index 3010745a..07e2abfd 100644 --- a/src/main/java/org/assertj/db/api/RequestColumnValueAssert.java +++ b/src/main/java/org/assertj/db/api/RequestColumnValueAssert.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.api; diff --git a/src/main/java/org/assertj/db/api/RequestRowAssert.java b/src/main/java/org/assertj/db/api/RequestRowAssert.java index 1ed6d1d6..c5b40d38 100644 --- a/src/main/java/org/assertj/db/api/RequestRowAssert.java +++ b/src/main/java/org/assertj/db/api/RequestRowAssert.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.api; diff --git a/src/main/java/org/assertj/db/api/RequestRowValueAssert.java b/src/main/java/org/assertj/db/api/RequestRowValueAssert.java index 87ca9f05..c667ad17 100644 --- a/src/main/java/org/assertj/db/api/RequestRowValueAssert.java +++ b/src/main/java/org/assertj/db/api/RequestRowValueAssert.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.api; diff --git a/src/main/java/org/assertj/db/api/SoftAssertions.java b/src/main/java/org/assertj/db/api/SoftAssertions.java index a0f1cef4..9b7d4e17 100644 --- a/src/main/java/org/assertj/db/api/SoftAssertions.java +++ b/src/main/java/org/assertj/db/api/SoftAssertions.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.api; diff --git a/src/main/java/org/assertj/db/api/SoftProxies.java b/src/main/java/org/assertj/db/api/SoftProxies.java index bd8f73c7..c7181c82 100644 --- a/src/main/java/org/assertj/db/api/SoftProxies.java +++ b/src/main/java/org/assertj/db/api/SoftProxies.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.api; diff --git a/src/main/java/org/assertj/db/api/TableAssert.java b/src/main/java/org/assertj/db/api/TableAssert.java index 090c2c9a..24eb0e4f 100644 --- a/src/main/java/org/assertj/db/api/TableAssert.java +++ b/src/main/java/org/assertj/db/api/TableAssert.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.api; diff --git a/src/main/java/org/assertj/db/api/TableColumnAssert.java b/src/main/java/org/assertj/db/api/TableColumnAssert.java index dffb62b1..61a17106 100644 --- a/src/main/java/org/assertj/db/api/TableColumnAssert.java +++ b/src/main/java/org/assertj/db/api/TableColumnAssert.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.api; diff --git a/src/main/java/org/assertj/db/api/TableColumnValueAssert.java b/src/main/java/org/assertj/db/api/TableColumnValueAssert.java index 3ad26f42..c7390963 100644 --- a/src/main/java/org/assertj/db/api/TableColumnValueAssert.java +++ b/src/main/java/org/assertj/db/api/TableColumnValueAssert.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.api; diff --git a/src/main/java/org/assertj/db/api/TableRowAssert.java b/src/main/java/org/assertj/db/api/TableRowAssert.java index 94da04f0..29b12257 100644 --- a/src/main/java/org/assertj/db/api/TableRowAssert.java +++ b/src/main/java/org/assertj/db/api/TableRowAssert.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.api; diff --git a/src/main/java/org/assertj/db/api/TableRowValueAssert.java b/src/main/java/org/assertj/db/api/TableRowValueAssert.java index 3be7f48f..885a1980 100644 --- a/src/main/java/org/assertj/db/api/TableRowValueAssert.java +++ b/src/main/java/org/assertj/db/api/TableRowValueAssert.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.api; diff --git a/src/main/java/org/assertj/db/api/assertions/AssertOnChangeType.java b/src/main/java/org/assertj/db/api/assertions/AssertOnChangeType.java index 16db6fc5..719b59b4 100644 --- a/src/main/java/org/assertj/db/api/assertions/AssertOnChangeType.java +++ b/src/main/java/org/assertj/db/api/assertions/AssertOnChangeType.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.api.assertions; diff --git a/src/main/java/org/assertj/db/api/assertions/AssertOnColumnClass.java b/src/main/java/org/assertj/db/api/assertions/AssertOnColumnClass.java index 1dd105c4..11a0fa54 100644 --- a/src/main/java/org/assertj/db/api/assertions/AssertOnColumnClass.java +++ b/src/main/java/org/assertj/db/api/assertions/AssertOnColumnClass.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.api.assertions; diff --git a/src/main/java/org/assertj/db/api/assertions/AssertOnColumnContent.java b/src/main/java/org/assertj/db/api/assertions/AssertOnColumnContent.java index f9a788a5..4015c365 100644 --- a/src/main/java/org/assertj/db/api/assertions/AssertOnColumnContent.java +++ b/src/main/java/org/assertj/db/api/assertions/AssertOnColumnContent.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.api.assertions; diff --git a/src/main/java/org/assertj/db/api/assertions/AssertOnColumnEquality.java b/src/main/java/org/assertj/db/api/assertions/AssertOnColumnEquality.java index f45c95e6..59615e8d 100644 --- a/src/main/java/org/assertj/db/api/assertions/AssertOnColumnEquality.java +++ b/src/main/java/org/assertj/db/api/assertions/AssertOnColumnEquality.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.api.assertions; diff --git a/src/main/java/org/assertj/db/api/assertions/AssertOnColumnName.java b/src/main/java/org/assertj/db/api/assertions/AssertOnColumnName.java index e6a96fb7..f2fbea2e 100644 --- a/src/main/java/org/assertj/db/api/assertions/AssertOnColumnName.java +++ b/src/main/java/org/assertj/db/api/assertions/AssertOnColumnName.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.api.assertions; diff --git a/src/main/java/org/assertj/db/api/assertions/AssertOnColumnNullity.java b/src/main/java/org/assertj/db/api/assertions/AssertOnColumnNullity.java index 08237c5f..0a1ab874 100644 --- a/src/main/java/org/assertj/db/api/assertions/AssertOnColumnNullity.java +++ b/src/main/java/org/assertj/db/api/assertions/AssertOnColumnNullity.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.api.assertions; diff --git a/src/main/java/org/assertj/db/api/assertions/AssertOnColumnOfChangeEquality.java b/src/main/java/org/assertj/db/api/assertions/AssertOnColumnOfChangeEquality.java index 8714663a..f4c724e1 100644 --- a/src/main/java/org/assertj/db/api/assertions/AssertOnColumnOfChangeEquality.java +++ b/src/main/java/org/assertj/db/api/assertions/AssertOnColumnOfChangeEquality.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.api.assertions; diff --git a/src/main/java/org/assertj/db/api/assertions/AssertOnColumnType.java b/src/main/java/org/assertj/db/api/assertions/AssertOnColumnType.java index 130da6d1..636c1458 100644 --- a/src/main/java/org/assertj/db/api/assertions/AssertOnColumnType.java +++ b/src/main/java/org/assertj/db/api/assertions/AssertOnColumnType.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.api.assertions; diff --git a/src/main/java/org/assertj/db/api/assertions/AssertOnDataType.java b/src/main/java/org/assertj/db/api/assertions/AssertOnDataType.java index aa623dcc..e38365f0 100644 --- a/src/main/java/org/assertj/db/api/assertions/AssertOnDataType.java +++ b/src/main/java/org/assertj/db/api/assertions/AssertOnDataType.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.api.assertions; diff --git a/src/main/java/org/assertj/db/api/assertions/AssertOnExistence.java b/src/main/java/org/assertj/db/api/assertions/AssertOnExistence.java index b9d8f355..a184cde8 100644 --- a/src/main/java/org/assertj/db/api/assertions/AssertOnExistence.java +++ b/src/main/java/org/assertj/db/api/assertions/AssertOnExistence.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.api.assertions; diff --git a/src/main/java/org/assertj/db/api/assertions/AssertOnModifiedColumn.java b/src/main/java/org/assertj/db/api/assertions/AssertOnModifiedColumn.java index 3fe50f00..3910032b 100644 --- a/src/main/java/org/assertj/db/api/assertions/AssertOnModifiedColumn.java +++ b/src/main/java/org/assertj/db/api/assertions/AssertOnModifiedColumn.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.api.assertions; diff --git a/src/main/java/org/assertj/db/api/assertions/AssertOnModifiedColumns.java b/src/main/java/org/assertj/db/api/assertions/AssertOnModifiedColumns.java index 9c1aa6f3..fde498bb 100644 --- a/src/main/java/org/assertj/db/api/assertions/AssertOnModifiedColumns.java +++ b/src/main/java/org/assertj/db/api/assertions/AssertOnModifiedColumns.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.api.assertions; diff --git a/src/main/java/org/assertj/db/api/assertions/AssertOnNumberOfChanges.java b/src/main/java/org/assertj/db/api/assertions/AssertOnNumberOfChanges.java index ceef204a..2ba93cd4 100644 --- a/src/main/java/org/assertj/db/api/assertions/AssertOnNumberOfChanges.java +++ b/src/main/java/org/assertj/db/api/assertions/AssertOnNumberOfChanges.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.api.assertions; diff --git a/src/main/java/org/assertj/db/api/assertions/AssertOnNumberOfColumns.java b/src/main/java/org/assertj/db/api/assertions/AssertOnNumberOfColumns.java index 59d4612f..ee22695d 100644 --- a/src/main/java/org/assertj/db/api/assertions/AssertOnNumberOfColumns.java +++ b/src/main/java/org/assertj/db/api/assertions/AssertOnNumberOfColumns.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.api.assertions; diff --git a/src/main/java/org/assertj/db/api/assertions/AssertOnNumberOfRows.java b/src/main/java/org/assertj/db/api/assertions/AssertOnNumberOfRows.java index fbe345d3..8a7e92dc 100644 --- a/src/main/java/org/assertj/db/api/assertions/AssertOnNumberOfRows.java +++ b/src/main/java/org/assertj/db/api/assertions/AssertOnNumberOfRows.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.api.assertions; diff --git a/src/main/java/org/assertj/db/api/assertions/AssertOnPrimaryKey.java b/src/main/java/org/assertj/db/api/assertions/AssertOnPrimaryKey.java index 5486a924..4e8ceeb9 100644 --- a/src/main/java/org/assertj/db/api/assertions/AssertOnPrimaryKey.java +++ b/src/main/java/org/assertj/db/api/assertions/AssertOnPrimaryKey.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.api.assertions; diff --git a/src/main/java/org/assertj/db/api/assertions/AssertOnRowCondition.java b/src/main/java/org/assertj/db/api/assertions/AssertOnRowCondition.java index 5184e06f..1ba2bf28 100644 --- a/src/main/java/org/assertj/db/api/assertions/AssertOnRowCondition.java +++ b/src/main/java/org/assertj/db/api/assertions/AssertOnRowCondition.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.api.assertions; diff --git a/src/main/java/org/assertj/db/api/assertions/AssertOnRowEquality.java b/src/main/java/org/assertj/db/api/assertions/AssertOnRowEquality.java index 71a2d60a..5c61f928 100644 --- a/src/main/java/org/assertj/db/api/assertions/AssertOnRowEquality.java +++ b/src/main/java/org/assertj/db/api/assertions/AssertOnRowEquality.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.api.assertions; diff --git a/src/main/java/org/assertj/db/api/assertions/AssertOnRowNullity.java b/src/main/java/org/assertj/db/api/assertions/AssertOnRowNullity.java index 974128eb..32d52e03 100644 --- a/src/main/java/org/assertj/db/api/assertions/AssertOnRowNullity.java +++ b/src/main/java/org/assertj/db/api/assertions/AssertOnRowNullity.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.api.assertions; diff --git a/src/main/java/org/assertj/db/api/assertions/AssertOnRowOfChangeExistence.java b/src/main/java/org/assertj/db/api/assertions/AssertOnRowOfChangeExistence.java index 4777809a..dfb9affd 100644 --- a/src/main/java/org/assertj/db/api/assertions/AssertOnRowOfChangeExistence.java +++ b/src/main/java/org/assertj/db/api/assertions/AssertOnRowOfChangeExistence.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.api.assertions; diff --git a/src/main/java/org/assertj/db/api/assertions/AssertOnValueChronology.java b/src/main/java/org/assertj/db/api/assertions/AssertOnValueChronology.java index fd0b56cd..f5af20b4 100644 --- a/src/main/java/org/assertj/db/api/assertions/AssertOnValueChronology.java +++ b/src/main/java/org/assertj/db/api/assertions/AssertOnValueChronology.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.api.assertions; diff --git a/src/main/java/org/assertj/db/api/assertions/AssertOnValueClass.java b/src/main/java/org/assertj/db/api/assertions/AssertOnValueClass.java index 955c6b62..f82e56a3 100644 --- a/src/main/java/org/assertj/db/api/assertions/AssertOnValueClass.java +++ b/src/main/java/org/assertj/db/api/assertions/AssertOnValueClass.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.api.assertions; diff --git a/src/main/java/org/assertj/db/api/assertions/AssertOnValueCloseness.java b/src/main/java/org/assertj/db/api/assertions/AssertOnValueCloseness.java index 68d18240..82521681 100644 --- a/src/main/java/org/assertj/db/api/assertions/AssertOnValueCloseness.java +++ b/src/main/java/org/assertj/db/api/assertions/AssertOnValueCloseness.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.api.assertions; diff --git a/src/main/java/org/assertj/db/api/assertions/AssertOnValueComparison.java b/src/main/java/org/assertj/db/api/assertions/AssertOnValueComparison.java index e004b635..a6e1c355 100644 --- a/src/main/java/org/assertj/db/api/assertions/AssertOnValueComparison.java +++ b/src/main/java/org/assertj/db/api/assertions/AssertOnValueComparison.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.api.assertions; diff --git a/src/main/java/org/assertj/db/api/assertions/AssertOnValueCondition.java b/src/main/java/org/assertj/db/api/assertions/AssertOnValueCondition.java index ad78c99f..4280b23e 100644 --- a/src/main/java/org/assertj/db/api/assertions/AssertOnValueCondition.java +++ b/src/main/java/org/assertj/db/api/assertions/AssertOnValueCondition.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.api.assertions; diff --git a/src/main/java/org/assertj/db/api/assertions/AssertOnValueEquality.java b/src/main/java/org/assertj/db/api/assertions/AssertOnValueEquality.java index 75903850..64d34932 100644 --- a/src/main/java/org/assertj/db/api/assertions/AssertOnValueEquality.java +++ b/src/main/java/org/assertj/db/api/assertions/AssertOnValueEquality.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.api.assertions; diff --git a/src/main/java/org/assertj/db/api/assertions/AssertOnValueInequality.java b/src/main/java/org/assertj/db/api/assertions/AssertOnValueInequality.java index 660d0654..566eac4f 100644 --- a/src/main/java/org/assertj/db/api/assertions/AssertOnValueInequality.java +++ b/src/main/java/org/assertj/db/api/assertions/AssertOnValueInequality.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.api.assertions; diff --git a/src/main/java/org/assertj/db/api/assertions/AssertOnValueNullity.java b/src/main/java/org/assertj/db/api/assertions/AssertOnValueNullity.java index f19e2667..09dfaa3e 100644 --- a/src/main/java/org/assertj/db/api/assertions/AssertOnValueNullity.java +++ b/src/main/java/org/assertj/db/api/assertions/AssertOnValueNullity.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.api.assertions; diff --git a/src/main/java/org/assertj/db/api/assertions/AssertOnValueType.java b/src/main/java/org/assertj/db/api/assertions/AssertOnValueType.java index 96be2174..37d686c8 100644 --- a/src/main/java/org/assertj/db/api/assertions/AssertOnValueType.java +++ b/src/main/java/org/assertj/db/api/assertions/AssertOnValueType.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.api.assertions; diff --git a/src/main/java/org/assertj/db/api/assertions/impl/AssertionsOnChangeType.java b/src/main/java/org/assertj/db/api/assertions/impl/AssertionsOnChangeType.java index 01acc856..7c279c90 100644 --- a/src/main/java/org/assertj/db/api/assertions/impl/AssertionsOnChangeType.java +++ b/src/main/java/org/assertj/db/api/assertions/impl/AssertionsOnChangeType.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.api.assertions.impl; diff --git a/src/main/java/org/assertj/db/api/assertions/impl/AssertionsOnColumnClass.java b/src/main/java/org/assertj/db/api/assertions/impl/AssertionsOnColumnClass.java index b2dc076b..6ed456b7 100644 --- a/src/main/java/org/assertj/db/api/assertions/impl/AssertionsOnColumnClass.java +++ b/src/main/java/org/assertj/db/api/assertions/impl/AssertionsOnColumnClass.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.api.assertions.impl; diff --git a/src/main/java/org/assertj/db/api/assertions/impl/AssertionsOnColumnContent.java b/src/main/java/org/assertj/db/api/assertions/impl/AssertionsOnColumnContent.java index c629a208..55855d0d 100644 --- a/src/main/java/org/assertj/db/api/assertions/impl/AssertionsOnColumnContent.java +++ b/src/main/java/org/assertj/db/api/assertions/impl/AssertionsOnColumnContent.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.api.assertions.impl; diff --git a/src/main/java/org/assertj/db/api/assertions/impl/AssertionsOnColumnEquality.java b/src/main/java/org/assertj/db/api/assertions/impl/AssertionsOnColumnEquality.java index a7f978c0..d2d3e5d3 100644 --- a/src/main/java/org/assertj/db/api/assertions/impl/AssertionsOnColumnEquality.java +++ b/src/main/java/org/assertj/db/api/assertions/impl/AssertionsOnColumnEquality.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.api.assertions.impl; diff --git a/src/main/java/org/assertj/db/api/assertions/impl/AssertionsOnColumnName.java b/src/main/java/org/assertj/db/api/assertions/impl/AssertionsOnColumnName.java index 4b118a8d..51f2193d 100644 --- a/src/main/java/org/assertj/db/api/assertions/impl/AssertionsOnColumnName.java +++ b/src/main/java/org/assertj/db/api/assertions/impl/AssertionsOnColumnName.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.api.assertions.impl; diff --git a/src/main/java/org/assertj/db/api/assertions/impl/AssertionsOnColumnOfChangeClass.java b/src/main/java/org/assertj/db/api/assertions/impl/AssertionsOnColumnOfChangeClass.java index 9eb46080..12f15723 100644 --- a/src/main/java/org/assertj/db/api/assertions/impl/AssertionsOnColumnOfChangeClass.java +++ b/src/main/java/org/assertj/db/api/assertions/impl/AssertionsOnColumnOfChangeClass.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.api.assertions.impl; diff --git a/src/main/java/org/assertj/db/api/assertions/impl/AssertionsOnColumnOfChangeEquality.java b/src/main/java/org/assertj/db/api/assertions/impl/AssertionsOnColumnOfChangeEquality.java index 9c1c247d..3c8f61f3 100644 --- a/src/main/java/org/assertj/db/api/assertions/impl/AssertionsOnColumnOfChangeEquality.java +++ b/src/main/java/org/assertj/db/api/assertions/impl/AssertionsOnColumnOfChangeEquality.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.api.assertions.impl; diff --git a/src/main/java/org/assertj/db/api/assertions/impl/AssertionsOnColumnOfChangeType.java b/src/main/java/org/assertj/db/api/assertions/impl/AssertionsOnColumnOfChangeType.java index 2f92d2af..57342f7b 100644 --- a/src/main/java/org/assertj/db/api/assertions/impl/AssertionsOnColumnOfChangeType.java +++ b/src/main/java/org/assertj/db/api/assertions/impl/AssertionsOnColumnOfChangeType.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.api.assertions.impl; diff --git a/src/main/java/org/assertj/db/api/assertions/impl/AssertionsOnColumnType.java b/src/main/java/org/assertj/db/api/assertions/impl/AssertionsOnColumnType.java index e6e0e779..9b029bb1 100644 --- a/src/main/java/org/assertj/db/api/assertions/impl/AssertionsOnColumnType.java +++ b/src/main/java/org/assertj/db/api/assertions/impl/AssertionsOnColumnType.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.api.assertions.impl; diff --git a/src/main/java/org/assertj/db/api/assertions/impl/AssertionsOnDataType.java b/src/main/java/org/assertj/db/api/assertions/impl/AssertionsOnDataType.java index fc38f171..4dae08b4 100644 --- a/src/main/java/org/assertj/db/api/assertions/impl/AssertionsOnDataType.java +++ b/src/main/java/org/assertj/db/api/assertions/impl/AssertionsOnDataType.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.api.assertions.impl; diff --git a/src/main/java/org/assertj/db/api/assertions/impl/AssertionsOnModifiedColumn.java b/src/main/java/org/assertj/db/api/assertions/impl/AssertionsOnModifiedColumn.java index faab0d58..6e03cfa7 100644 --- a/src/main/java/org/assertj/db/api/assertions/impl/AssertionsOnModifiedColumn.java +++ b/src/main/java/org/assertj/db/api/assertions/impl/AssertionsOnModifiedColumn.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.api.assertions.impl; diff --git a/src/main/java/org/assertj/db/api/assertions/impl/AssertionsOnModifiedColumns.java b/src/main/java/org/assertj/db/api/assertions/impl/AssertionsOnModifiedColumns.java index 2935a3df..474acf2c 100644 --- a/src/main/java/org/assertj/db/api/assertions/impl/AssertionsOnModifiedColumns.java +++ b/src/main/java/org/assertj/db/api/assertions/impl/AssertionsOnModifiedColumns.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.api.assertions.impl; diff --git a/src/main/java/org/assertj/db/api/assertions/impl/AssertionsOnNumberOfChanges.java b/src/main/java/org/assertj/db/api/assertions/impl/AssertionsOnNumberOfChanges.java index bc760ff5..e79935a9 100644 --- a/src/main/java/org/assertj/db/api/assertions/impl/AssertionsOnNumberOfChanges.java +++ b/src/main/java/org/assertj/db/api/assertions/impl/AssertionsOnNumberOfChanges.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.api.assertions.impl; diff --git a/src/main/java/org/assertj/db/api/assertions/impl/AssertionsOnNumberOfColumns.java b/src/main/java/org/assertj/db/api/assertions/impl/AssertionsOnNumberOfColumns.java index 551519d7..3185bb8a 100644 --- a/src/main/java/org/assertj/db/api/assertions/impl/AssertionsOnNumberOfColumns.java +++ b/src/main/java/org/assertj/db/api/assertions/impl/AssertionsOnNumberOfColumns.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.api.assertions.impl; diff --git a/src/main/java/org/assertj/db/api/assertions/impl/AssertionsOnNumberOfRows.java b/src/main/java/org/assertj/db/api/assertions/impl/AssertionsOnNumberOfRows.java index 9a906a02..ce483ee7 100644 --- a/src/main/java/org/assertj/db/api/assertions/impl/AssertionsOnNumberOfRows.java +++ b/src/main/java/org/assertj/db/api/assertions/impl/AssertionsOnNumberOfRows.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.api.assertions.impl; diff --git a/src/main/java/org/assertj/db/api/assertions/impl/AssertionsOnPrimaryKey.java b/src/main/java/org/assertj/db/api/assertions/impl/AssertionsOnPrimaryKey.java index 0a54730d..2c61a839 100644 --- a/src/main/java/org/assertj/db/api/assertions/impl/AssertionsOnPrimaryKey.java +++ b/src/main/java/org/assertj/db/api/assertions/impl/AssertionsOnPrimaryKey.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.api.assertions.impl; diff --git a/src/main/java/org/assertj/db/api/assertions/impl/AssertionsOnRowCondition.java b/src/main/java/org/assertj/db/api/assertions/impl/AssertionsOnRowCondition.java index b8af7d5d..fd3a00bd 100644 --- a/src/main/java/org/assertj/db/api/assertions/impl/AssertionsOnRowCondition.java +++ b/src/main/java/org/assertj/db/api/assertions/impl/AssertionsOnRowCondition.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.api.assertions.impl; diff --git a/src/main/java/org/assertj/db/api/assertions/impl/AssertionsOnRowEquality.java b/src/main/java/org/assertj/db/api/assertions/impl/AssertionsOnRowEquality.java index b24e7ade..db88e1f0 100644 --- a/src/main/java/org/assertj/db/api/assertions/impl/AssertionsOnRowEquality.java +++ b/src/main/java/org/assertj/db/api/assertions/impl/AssertionsOnRowEquality.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.api.assertions.impl; diff --git a/src/main/java/org/assertj/db/api/assertions/impl/AssertionsOnRowOfChangeExistence.java b/src/main/java/org/assertj/db/api/assertions/impl/AssertionsOnRowOfChangeExistence.java index c1014fb3..c7afa0f3 100644 --- a/src/main/java/org/assertj/db/api/assertions/impl/AssertionsOnRowOfChangeExistence.java +++ b/src/main/java/org/assertj/db/api/assertions/impl/AssertionsOnRowOfChangeExistence.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.api.assertions.impl; diff --git a/src/main/java/org/assertj/db/api/assertions/impl/AssertionsOnTableExistence.java b/src/main/java/org/assertj/db/api/assertions/impl/AssertionsOnTableExistence.java index 5b5ebda4..e2e7102a 100644 --- a/src/main/java/org/assertj/db/api/assertions/impl/AssertionsOnTableExistence.java +++ b/src/main/java/org/assertj/db/api/assertions/impl/AssertionsOnTableExistence.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.api.assertions.impl; diff --git a/src/main/java/org/assertj/db/api/assertions/impl/AssertionsOnValueChronology.java b/src/main/java/org/assertj/db/api/assertions/impl/AssertionsOnValueChronology.java index 07181b47..57ff3657 100644 --- a/src/main/java/org/assertj/db/api/assertions/impl/AssertionsOnValueChronology.java +++ b/src/main/java/org/assertj/db/api/assertions/impl/AssertionsOnValueChronology.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.api.assertions.impl; diff --git a/src/main/java/org/assertj/db/api/assertions/impl/AssertionsOnValueClass.java b/src/main/java/org/assertj/db/api/assertions/impl/AssertionsOnValueClass.java index a1a28563..60bc266b 100644 --- a/src/main/java/org/assertj/db/api/assertions/impl/AssertionsOnValueClass.java +++ b/src/main/java/org/assertj/db/api/assertions/impl/AssertionsOnValueClass.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.api.assertions.impl; diff --git a/src/main/java/org/assertj/db/api/assertions/impl/AssertionsOnValueCloseness.java b/src/main/java/org/assertj/db/api/assertions/impl/AssertionsOnValueCloseness.java index 60c52ab1..bfbf3f89 100644 --- a/src/main/java/org/assertj/db/api/assertions/impl/AssertionsOnValueCloseness.java +++ b/src/main/java/org/assertj/db/api/assertions/impl/AssertionsOnValueCloseness.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.api.assertions.impl; diff --git a/src/main/java/org/assertj/db/api/assertions/impl/AssertionsOnValueComparison.java b/src/main/java/org/assertj/db/api/assertions/impl/AssertionsOnValueComparison.java index 5b991da3..beee1431 100644 --- a/src/main/java/org/assertj/db/api/assertions/impl/AssertionsOnValueComparison.java +++ b/src/main/java/org/assertj/db/api/assertions/impl/AssertionsOnValueComparison.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.api.assertions.impl; diff --git a/src/main/java/org/assertj/db/api/assertions/impl/AssertionsOnValueCondition.java b/src/main/java/org/assertj/db/api/assertions/impl/AssertionsOnValueCondition.java index 03e27dab..98eb1cd8 100644 --- a/src/main/java/org/assertj/db/api/assertions/impl/AssertionsOnValueCondition.java +++ b/src/main/java/org/assertj/db/api/assertions/impl/AssertionsOnValueCondition.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.api.assertions.impl; diff --git a/src/main/java/org/assertj/db/api/assertions/impl/AssertionsOnValueEquality.java b/src/main/java/org/assertj/db/api/assertions/impl/AssertionsOnValueEquality.java index 609830c4..6dd029eb 100644 --- a/src/main/java/org/assertj/db/api/assertions/impl/AssertionsOnValueEquality.java +++ b/src/main/java/org/assertj/db/api/assertions/impl/AssertionsOnValueEquality.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.api.assertions.impl; diff --git a/src/main/java/org/assertj/db/api/assertions/impl/AssertionsOnValueInequality.java b/src/main/java/org/assertj/db/api/assertions/impl/AssertionsOnValueInequality.java index d163a3c8..4c900f11 100644 --- a/src/main/java/org/assertj/db/api/assertions/impl/AssertionsOnValueInequality.java +++ b/src/main/java/org/assertj/db/api/assertions/impl/AssertionsOnValueInequality.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.api.assertions.impl; diff --git a/src/main/java/org/assertj/db/api/assertions/impl/AssertionsOnValueNullity.java b/src/main/java/org/assertj/db/api/assertions/impl/AssertionsOnValueNullity.java index bf40a547..4dd6cb85 100644 --- a/src/main/java/org/assertj/db/api/assertions/impl/AssertionsOnValueNullity.java +++ b/src/main/java/org/assertj/db/api/assertions/impl/AssertionsOnValueNullity.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.api.assertions.impl; diff --git a/src/main/java/org/assertj/db/api/assertions/impl/AssertionsOnValueType.java b/src/main/java/org/assertj/db/api/assertions/impl/AssertionsOnValueType.java index 1a3a5650..45cc6dfb 100644 --- a/src/main/java/org/assertj/db/api/assertions/impl/AssertionsOnValueType.java +++ b/src/main/java/org/assertj/db/api/assertions/impl/AssertionsOnValueType.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.api.assertions.impl; diff --git a/src/main/java/org/assertj/db/api/assertions/impl/AssertionsOnValuesNullity.java b/src/main/java/org/assertj/db/api/assertions/impl/AssertionsOnValuesNullity.java index 6530db83..48843997 100644 --- a/src/main/java/org/assertj/db/api/assertions/impl/AssertionsOnValuesNullity.java +++ b/src/main/java/org/assertj/db/api/assertions/impl/AssertionsOnValuesNullity.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.api.assertions.impl; diff --git a/src/main/java/org/assertj/db/api/assertions/impl/package-info.java b/src/main/java/org/assertj/db/api/assertions/impl/package-info.java index d66ec97a..89482ac9 100644 --- a/src/main/java/org/assertj/db/api/assertions/impl/package-info.java +++ b/src/main/java/org/assertj/db/api/assertions/impl/package-info.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ /** * This package contains utility classes that implements the different assertions methods. diff --git a/src/main/java/org/assertj/db/api/assertions/package-info.java b/src/main/java/org/assertj/db/api/assertions/package-info.java index 599b12f3..636bee73 100644 --- a/src/main/java/org/assertj/db/api/assertions/package-info.java +++ b/src/main/java/org/assertj/db/api/assertions/package-info.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ /** * This package contains interfaces that defines the different assertions methods. diff --git a/src/main/java/org/assertj/db/api/package-info.java b/src/main/java/org/assertj/db/api/package-info.java index e098f219..24bc98d6 100644 --- a/src/main/java/org/assertj/db/api/package-info.java +++ b/src/main/java/org/assertj/db/api/package-info.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ /** * This package contains the API of assertj-db (and especially the entry point class {@link org.assertj.db.api.Assertions}). diff --git a/src/main/java/org/assertj/db/error/ShouldBeAfter.java b/src/main/java/org/assertj/db/error/ShouldBeAfter.java index b8aaeb7d..3ee44b08 100644 --- a/src/main/java/org/assertj/db/error/ShouldBeAfter.java +++ b/src/main/java/org/assertj/db/error/ShouldBeAfter.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.error; diff --git a/src/main/java/org/assertj/db/error/ShouldBeAfterOrEqual.java b/src/main/java/org/assertj/db/error/ShouldBeAfterOrEqual.java index 90c0f870..d98567ab 100644 --- a/src/main/java/org/assertj/db/error/ShouldBeAfterOrEqual.java +++ b/src/main/java/org/assertj/db/error/ShouldBeAfterOrEqual.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.error; diff --git a/src/main/java/org/assertj/db/error/ShouldBeBefore.java b/src/main/java/org/assertj/db/error/ShouldBeBefore.java index 6c2420fc..214487aa 100644 --- a/src/main/java/org/assertj/db/error/ShouldBeBefore.java +++ b/src/main/java/org/assertj/db/error/ShouldBeBefore.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.error; diff --git a/src/main/java/org/assertj/db/error/ShouldBeBeforeOrEqual.java b/src/main/java/org/assertj/db/error/ShouldBeBeforeOrEqual.java index c15fd4e2..4d605a75 100644 --- a/src/main/java/org/assertj/db/error/ShouldBeBeforeOrEqual.java +++ b/src/main/java/org/assertj/db/error/ShouldBeBeforeOrEqual.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.error; diff --git a/src/main/java/org/assertj/db/error/ShouldBeChangeType.java b/src/main/java/org/assertj/db/error/ShouldBeChangeType.java index c0146e5a..94ee61a1 100644 --- a/src/main/java/org/assertj/db/error/ShouldBeChangeType.java +++ b/src/main/java/org/assertj/db/error/ShouldBeChangeType.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.error; diff --git a/src/main/java/org/assertj/db/error/ShouldBeClose.java b/src/main/java/org/assertj/db/error/ShouldBeClose.java index e06204ca..7eb20fbf 100644 --- a/src/main/java/org/assertj/db/error/ShouldBeClose.java +++ b/src/main/java/org/assertj/db/error/ShouldBeClose.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.error; diff --git a/src/main/java/org/assertj/db/error/ShouldBeCompatible.java b/src/main/java/org/assertj/db/error/ShouldBeCompatible.java index 25155e4d..1226e6bc 100644 --- a/src/main/java/org/assertj/db/error/ShouldBeCompatible.java +++ b/src/main/java/org/assertj/db/error/ShouldBeCompatible.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.error; diff --git a/src/main/java/org/assertj/db/error/ShouldBeDataType.java b/src/main/java/org/assertj/db/error/ShouldBeDataType.java index 6653c8e0..1262d3a0 100644 --- a/src/main/java/org/assertj/db/error/ShouldBeDataType.java +++ b/src/main/java/org/assertj/db/error/ShouldBeDataType.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.error; diff --git a/src/main/java/org/assertj/db/error/ShouldBeEqual.java b/src/main/java/org/assertj/db/error/ShouldBeEqual.java index 7959ef32..ae0501b3 100644 --- a/src/main/java/org/assertj/db/error/ShouldBeEqual.java +++ b/src/main/java/org/assertj/db/error/ShouldBeEqual.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.error; diff --git a/src/main/java/org/assertj/db/error/ShouldBeEqualWithEndPoint.java b/src/main/java/org/assertj/db/error/ShouldBeEqualWithEndPoint.java index e1a0926b..ebc4df0c 100644 --- a/src/main/java/org/assertj/db/error/ShouldBeEqualWithEndPoint.java +++ b/src/main/java/org/assertj/db/error/ShouldBeEqualWithEndPoint.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.error; diff --git a/src/main/java/org/assertj/db/error/ShouldBeEqualWithStartPoint.java b/src/main/java/org/assertj/db/error/ShouldBeEqualWithStartPoint.java index 366041ba..df62ca89 100644 --- a/src/main/java/org/assertj/db/error/ShouldBeEqualWithStartPoint.java +++ b/src/main/java/org/assertj/db/error/ShouldBeEqualWithStartPoint.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.error; diff --git a/src/main/java/org/assertj/db/error/ShouldBeGreater.java b/src/main/java/org/assertj/db/error/ShouldBeGreater.java index 14cb36ad..621860a9 100644 --- a/src/main/java/org/assertj/db/error/ShouldBeGreater.java +++ b/src/main/java/org/assertj/db/error/ShouldBeGreater.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.error; diff --git a/src/main/java/org/assertj/db/error/ShouldBeGreaterOrEqual.java b/src/main/java/org/assertj/db/error/ShouldBeGreaterOrEqual.java index df86d4dd..7f01f76f 100644 --- a/src/main/java/org/assertj/db/error/ShouldBeGreaterOrEqual.java +++ b/src/main/java/org/assertj/db/error/ShouldBeGreaterOrEqual.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.error; diff --git a/src/main/java/org/assertj/db/error/ShouldBeLess.java b/src/main/java/org/assertj/db/error/ShouldBeLess.java index 5f870953..d040d06b 100644 --- a/src/main/java/org/assertj/db/error/ShouldBeLess.java +++ b/src/main/java/org/assertj/db/error/ShouldBeLess.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.error; diff --git a/src/main/java/org/assertj/db/error/ShouldBeLessOrEqual.java b/src/main/java/org/assertj/db/error/ShouldBeLessOrEqual.java index afc55a3b..4638be82 100644 --- a/src/main/java/org/assertj/db/error/ShouldBeLessOrEqual.java +++ b/src/main/java/org/assertj/db/error/ShouldBeLessOrEqual.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.error; diff --git a/src/main/java/org/assertj/db/error/ShouldBeModified.java b/src/main/java/org/assertj/db/error/ShouldBeModified.java index 9c9d9fcb..1a595612 100644 --- a/src/main/java/org/assertj/db/error/ShouldBeModified.java +++ b/src/main/java/org/assertj/db/error/ShouldBeModified.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.error; diff --git a/src/main/java/org/assertj/db/error/ShouldBeOnTable.java b/src/main/java/org/assertj/db/error/ShouldBeOnTable.java index eee473e9..90214b6f 100644 --- a/src/main/java/org/assertj/db/error/ShouldBeOnTable.java +++ b/src/main/java/org/assertj/db/error/ShouldBeOnTable.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.error; diff --git a/src/main/java/org/assertj/db/error/ShouldBeValueClass.java b/src/main/java/org/assertj/db/error/ShouldBeValueClass.java index b1bfbdde..bfce7a2a 100644 --- a/src/main/java/org/assertj/db/error/ShouldBeValueClass.java +++ b/src/main/java/org/assertj/db/error/ShouldBeValueClass.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.error; diff --git a/src/main/java/org/assertj/db/error/ShouldBeValueClassWithEndPoint.java b/src/main/java/org/assertj/db/error/ShouldBeValueClassWithEndPoint.java index e6f4832e..fd81a498 100644 --- a/src/main/java/org/assertj/db/error/ShouldBeValueClassWithEndPoint.java +++ b/src/main/java/org/assertj/db/error/ShouldBeValueClassWithEndPoint.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.error; diff --git a/src/main/java/org/assertj/db/error/ShouldBeValueClassWithStartPoint.java b/src/main/java/org/assertj/db/error/ShouldBeValueClassWithStartPoint.java index c4d8c10b..f3fa0818 100644 --- a/src/main/java/org/assertj/db/error/ShouldBeValueClassWithStartPoint.java +++ b/src/main/java/org/assertj/db/error/ShouldBeValueClassWithStartPoint.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.error; diff --git a/src/main/java/org/assertj/db/error/ShouldBeValueType.java b/src/main/java/org/assertj/db/error/ShouldBeValueType.java index edf381fc..64ea0140 100644 --- a/src/main/java/org/assertj/db/error/ShouldBeValueType.java +++ b/src/main/java/org/assertj/db/error/ShouldBeValueType.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.error; diff --git a/src/main/java/org/assertj/db/error/ShouldBeValueTypeOfAny.java b/src/main/java/org/assertj/db/error/ShouldBeValueTypeOfAny.java index 60d80797..c5342eea 100644 --- a/src/main/java/org/assertj/db/error/ShouldBeValueTypeOfAny.java +++ b/src/main/java/org/assertj/db/error/ShouldBeValueTypeOfAny.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.error; diff --git a/src/main/java/org/assertj/db/error/ShouldBeValueTypeOfAnyWithEndPoint.java b/src/main/java/org/assertj/db/error/ShouldBeValueTypeOfAnyWithEndPoint.java index dd8f74c9..2c4c56a1 100644 --- a/src/main/java/org/assertj/db/error/ShouldBeValueTypeOfAnyWithEndPoint.java +++ b/src/main/java/org/assertj/db/error/ShouldBeValueTypeOfAnyWithEndPoint.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.error; diff --git a/src/main/java/org/assertj/db/error/ShouldBeValueTypeOfAnyWithStartPoint.java b/src/main/java/org/assertj/db/error/ShouldBeValueTypeOfAnyWithStartPoint.java index 17d88155..805bdea1 100644 --- a/src/main/java/org/assertj/db/error/ShouldBeValueTypeOfAnyWithStartPoint.java +++ b/src/main/java/org/assertj/db/error/ShouldBeValueTypeOfAnyWithStartPoint.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.error; diff --git a/src/main/java/org/assertj/db/error/ShouldBeValueTypeWithEndPoint.java b/src/main/java/org/assertj/db/error/ShouldBeValueTypeWithEndPoint.java index 283c7fec..55e4bb47 100644 --- a/src/main/java/org/assertj/db/error/ShouldBeValueTypeWithEndPoint.java +++ b/src/main/java/org/assertj/db/error/ShouldBeValueTypeWithEndPoint.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.error; diff --git a/src/main/java/org/assertj/db/error/ShouldBeValueTypeWithStartPoint.java b/src/main/java/org/assertj/db/error/ShouldBeValueTypeWithStartPoint.java index 9fa8ce19..41d6b313 100644 --- a/src/main/java/org/assertj/db/error/ShouldBeValueTypeWithStartPoint.java +++ b/src/main/java/org/assertj/db/error/ShouldBeValueTypeWithStartPoint.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.error; diff --git a/src/main/java/org/assertj/db/error/ShouldContainsOnlyNotNull.java b/src/main/java/org/assertj/db/error/ShouldContainsOnlyNotNull.java index 28cfb2e1..4338b2d2 100644 --- a/src/main/java/org/assertj/db/error/ShouldContainsOnlyNotNull.java +++ b/src/main/java/org/assertj/db/error/ShouldContainsOnlyNotNull.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.error; diff --git a/src/main/java/org/assertj/db/error/ShouldContainsOnlyNull.java b/src/main/java/org/assertj/db/error/ShouldContainsOnlyNull.java index 861b4cb8..adf0dccb 100644 --- a/src/main/java/org/assertj/db/error/ShouldContainsOnlyNull.java +++ b/src/main/java/org/assertj/db/error/ShouldContainsOnlyNull.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.error; diff --git a/src/main/java/org/assertj/db/error/ShouldContainsValue.java b/src/main/java/org/assertj/db/error/ShouldContainsValue.java index cfe3481d..4b2f991c 100644 --- a/src/main/java/org/assertj/db/error/ShouldContainsValue.java +++ b/src/main/java/org/assertj/db/error/ShouldContainsValue.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.error; diff --git a/src/main/java/org/assertj/db/error/ShouldExist.java b/src/main/java/org/assertj/db/error/ShouldExist.java index 2fcb76d9..1d500acf 100644 --- a/src/main/java/org/assertj/db/error/ShouldExist.java +++ b/src/main/java/org/assertj/db/error/ShouldExist.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.error; diff --git a/src/main/java/org/assertj/db/error/ShouldHaveChangesSize.java b/src/main/java/org/assertj/db/error/ShouldHaveChangesSize.java index 5fd81acb..ac2218f2 100644 --- a/src/main/java/org/assertj/db/error/ShouldHaveChangesSize.java +++ b/src/main/java/org/assertj/db/error/ShouldHaveChangesSize.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.error; diff --git a/src/main/java/org/assertj/db/error/ShouldHaveChangesSizeGreater.java b/src/main/java/org/assertj/db/error/ShouldHaveChangesSizeGreater.java index 728bd48d..407833bd 100644 --- a/src/main/java/org/assertj/db/error/ShouldHaveChangesSizeGreater.java +++ b/src/main/java/org/assertj/db/error/ShouldHaveChangesSizeGreater.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.error; diff --git a/src/main/java/org/assertj/db/error/ShouldHaveChangesSizeGreaterOrEqual.java b/src/main/java/org/assertj/db/error/ShouldHaveChangesSizeGreaterOrEqual.java index 0c18c640..5f7ed379 100644 --- a/src/main/java/org/assertj/db/error/ShouldHaveChangesSizeGreaterOrEqual.java +++ b/src/main/java/org/assertj/db/error/ShouldHaveChangesSizeGreaterOrEqual.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.error; diff --git a/src/main/java/org/assertj/db/error/ShouldHaveChangesSizeLess.java b/src/main/java/org/assertj/db/error/ShouldHaveChangesSizeLess.java index 887c17d1..4e0a4ca8 100644 --- a/src/main/java/org/assertj/db/error/ShouldHaveChangesSizeLess.java +++ b/src/main/java/org/assertj/db/error/ShouldHaveChangesSizeLess.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.error; diff --git a/src/main/java/org/assertj/db/error/ShouldHaveChangesSizeLessOrEqual.java b/src/main/java/org/assertj/db/error/ShouldHaveChangesSizeLessOrEqual.java index 3a0c7839..c6a1533b 100644 --- a/src/main/java/org/assertj/db/error/ShouldHaveChangesSizeLessOrEqual.java +++ b/src/main/java/org/assertj/db/error/ShouldHaveChangesSizeLessOrEqual.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.error; diff --git a/src/main/java/org/assertj/db/error/ShouldHaveColumnsSize.java b/src/main/java/org/assertj/db/error/ShouldHaveColumnsSize.java index d5c4c5cd..11a9df02 100644 --- a/src/main/java/org/assertj/db/error/ShouldHaveColumnsSize.java +++ b/src/main/java/org/assertj/db/error/ShouldHaveColumnsSize.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.error; diff --git a/src/main/java/org/assertj/db/error/ShouldHaveColumnsSizeGreater.java b/src/main/java/org/assertj/db/error/ShouldHaveColumnsSizeGreater.java index 70fefbfb..d3ad0f84 100644 --- a/src/main/java/org/assertj/db/error/ShouldHaveColumnsSizeGreater.java +++ b/src/main/java/org/assertj/db/error/ShouldHaveColumnsSizeGreater.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.error; diff --git a/src/main/java/org/assertj/db/error/ShouldHaveColumnsSizeGreaterOrEqual.java b/src/main/java/org/assertj/db/error/ShouldHaveColumnsSizeGreaterOrEqual.java index 8eff0fdb..00364efe 100644 --- a/src/main/java/org/assertj/db/error/ShouldHaveColumnsSizeGreaterOrEqual.java +++ b/src/main/java/org/assertj/db/error/ShouldHaveColumnsSizeGreaterOrEqual.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.error; diff --git a/src/main/java/org/assertj/db/error/ShouldHaveColumnsSizeLess.java b/src/main/java/org/assertj/db/error/ShouldHaveColumnsSizeLess.java index 9bf2d781..be717d12 100644 --- a/src/main/java/org/assertj/db/error/ShouldHaveColumnsSizeLess.java +++ b/src/main/java/org/assertj/db/error/ShouldHaveColumnsSizeLess.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.error; diff --git a/src/main/java/org/assertj/db/error/ShouldHaveColumnsSizeLessOrEqual.java b/src/main/java/org/assertj/db/error/ShouldHaveColumnsSizeLessOrEqual.java index db4464ed..83ef1ed4 100644 --- a/src/main/java/org/assertj/db/error/ShouldHaveColumnsSizeLessOrEqual.java +++ b/src/main/java/org/assertj/db/error/ShouldHaveColumnsSizeLessOrEqual.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.error; diff --git a/src/main/java/org/assertj/db/error/ShouldHaveModifications.java b/src/main/java/org/assertj/db/error/ShouldHaveModifications.java index 73d8f581..1cee0ff2 100644 --- a/src/main/java/org/assertj/db/error/ShouldHaveModifications.java +++ b/src/main/java/org/assertj/db/error/ShouldHaveModifications.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.error; diff --git a/src/main/java/org/assertj/db/error/ShouldHaveName.java b/src/main/java/org/assertj/db/error/ShouldHaveName.java index b3b69491..ed20959a 100644 --- a/src/main/java/org/assertj/db/error/ShouldHaveName.java +++ b/src/main/java/org/assertj/db/error/ShouldHaveName.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.error; diff --git a/src/main/java/org/assertj/db/error/ShouldHaveNumberOfModifications.java b/src/main/java/org/assertj/db/error/ShouldHaveNumberOfModifications.java index 19b1495f..e9b632a2 100644 --- a/src/main/java/org/assertj/db/error/ShouldHaveNumberOfModifications.java +++ b/src/main/java/org/assertj/db/error/ShouldHaveNumberOfModifications.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.error; diff --git a/src/main/java/org/assertj/db/error/ShouldHaveNumberOfModificationsGreater.java b/src/main/java/org/assertj/db/error/ShouldHaveNumberOfModificationsGreater.java index ee623494..78df178f 100644 --- a/src/main/java/org/assertj/db/error/ShouldHaveNumberOfModificationsGreater.java +++ b/src/main/java/org/assertj/db/error/ShouldHaveNumberOfModificationsGreater.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.error; diff --git a/src/main/java/org/assertj/db/error/ShouldHaveNumberOfModificationsGreaterOrEqual.java b/src/main/java/org/assertj/db/error/ShouldHaveNumberOfModificationsGreaterOrEqual.java index 258323c8..d3da61c6 100644 --- a/src/main/java/org/assertj/db/error/ShouldHaveNumberOfModificationsGreaterOrEqual.java +++ b/src/main/java/org/assertj/db/error/ShouldHaveNumberOfModificationsGreaterOrEqual.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.error; diff --git a/src/main/java/org/assertj/db/error/ShouldHaveNumberOfModificationsLess.java b/src/main/java/org/assertj/db/error/ShouldHaveNumberOfModificationsLess.java index 62e4359a..c8cf24ed 100644 --- a/src/main/java/org/assertj/db/error/ShouldHaveNumberOfModificationsLess.java +++ b/src/main/java/org/assertj/db/error/ShouldHaveNumberOfModificationsLess.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.error; diff --git a/src/main/java/org/assertj/db/error/ShouldHaveNumberOfModificationsLessOrEqual.java b/src/main/java/org/assertj/db/error/ShouldHaveNumberOfModificationsLessOrEqual.java index 33c7c8e1..a4d1d43b 100644 --- a/src/main/java/org/assertj/db/error/ShouldHaveNumberOfModificationsLessOrEqual.java +++ b/src/main/java/org/assertj/db/error/ShouldHaveNumberOfModificationsLessOrEqual.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.error; diff --git a/src/main/java/org/assertj/db/error/ShouldHavePksNames.java b/src/main/java/org/assertj/db/error/ShouldHavePksNames.java index c4dc9567..423231a8 100644 --- a/src/main/java/org/assertj/db/error/ShouldHavePksNames.java +++ b/src/main/java/org/assertj/db/error/ShouldHavePksNames.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.error; diff --git a/src/main/java/org/assertj/db/error/ShouldHavePksValues.java b/src/main/java/org/assertj/db/error/ShouldHavePksValues.java index 4564f864..a83f171d 100644 --- a/src/main/java/org/assertj/db/error/ShouldHavePksValues.java +++ b/src/main/java/org/assertj/db/error/ShouldHavePksValues.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.error; diff --git a/src/main/java/org/assertj/db/error/ShouldHaveRowsSize.java b/src/main/java/org/assertj/db/error/ShouldHaveRowsSize.java index 052d1efa..23c8c019 100644 --- a/src/main/java/org/assertj/db/error/ShouldHaveRowsSize.java +++ b/src/main/java/org/assertj/db/error/ShouldHaveRowsSize.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.error; diff --git a/src/main/java/org/assertj/db/error/ShouldHaveRowsSizeGreater.java b/src/main/java/org/assertj/db/error/ShouldHaveRowsSizeGreater.java index 31c02e63..d56b304d 100644 --- a/src/main/java/org/assertj/db/error/ShouldHaveRowsSizeGreater.java +++ b/src/main/java/org/assertj/db/error/ShouldHaveRowsSizeGreater.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.error; diff --git a/src/main/java/org/assertj/db/error/ShouldHaveRowsSizeGreaterOrEqual.java b/src/main/java/org/assertj/db/error/ShouldHaveRowsSizeGreaterOrEqual.java index a3449318..dee58b37 100644 --- a/src/main/java/org/assertj/db/error/ShouldHaveRowsSizeGreaterOrEqual.java +++ b/src/main/java/org/assertj/db/error/ShouldHaveRowsSizeGreaterOrEqual.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.error; diff --git a/src/main/java/org/assertj/db/error/ShouldHaveRowsSizeLess.java b/src/main/java/org/assertj/db/error/ShouldHaveRowsSizeLess.java index ce5cc179..705416bf 100644 --- a/src/main/java/org/assertj/db/error/ShouldHaveRowsSizeLess.java +++ b/src/main/java/org/assertj/db/error/ShouldHaveRowsSizeLess.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.error; diff --git a/src/main/java/org/assertj/db/error/ShouldHaveRowsSizeLessOrEqual.java b/src/main/java/org/assertj/db/error/ShouldHaveRowsSizeLessOrEqual.java index cc9137a9..771886ba 100644 --- a/src/main/java/org/assertj/db/error/ShouldHaveRowsSizeLessOrEqual.java +++ b/src/main/java/org/assertj/db/error/ShouldHaveRowsSizeLessOrEqual.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.error; diff --git a/src/main/java/org/assertj/db/error/ShouldNotBeEqual.java b/src/main/java/org/assertj/db/error/ShouldNotBeEqual.java index 457420c5..5ebf94b8 100644 --- a/src/main/java/org/assertj/db/error/ShouldNotBeEqual.java +++ b/src/main/java/org/assertj/db/error/ShouldNotBeEqual.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.error; diff --git a/src/main/java/org/assertj/db/error/ShouldNotBeModified.java b/src/main/java/org/assertj/db/error/ShouldNotBeModified.java index 7066941f..995b307f 100644 --- a/src/main/java/org/assertj/db/error/ShouldNotBeModified.java +++ b/src/main/java/org/assertj/db/error/ShouldNotBeModified.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.error; diff --git a/src/main/java/org/assertj/db/error/ShouldNotExist.java b/src/main/java/org/assertj/db/error/ShouldNotExist.java index 22c54dd0..6d05c55e 100644 --- a/src/main/java/org/assertj/db/error/ShouldNotExist.java +++ b/src/main/java/org/assertj/db/error/ShouldNotExist.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.error; diff --git a/src/main/java/org/assertj/db/error/ShouldSatisfy.java b/src/main/java/org/assertj/db/error/ShouldSatisfy.java index 49219ceb..2f837ced 100644 --- a/src/main/java/org/assertj/db/error/ShouldSatisfy.java +++ b/src/main/java/org/assertj/db/error/ShouldSatisfy.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.error; diff --git a/src/main/java/org/assertj/db/error/package-info.java b/src/main/java/org/assertj/db/error/package-info.java index 2a668cbd..03d7fe93 100644 --- a/src/main/java/org/assertj/db/error/package-info.java +++ b/src/main/java/org/assertj/db/error/package-info.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ /** * This package contains the different error messages used when an assertion methods fail. diff --git a/src/main/java/org/assertj/db/exception/AssertJDBException.java b/src/main/java/org/assertj/db/exception/AssertJDBException.java index b665840f..3bba952d 100644 --- a/src/main/java/org/assertj/db/exception/AssertJDBException.java +++ b/src/main/java/org/assertj/db/exception/AssertJDBException.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.exception; diff --git a/src/main/java/org/assertj/db/exception/package-info.java b/src/main/java/org/assertj/db/exception/package-info.java index 5046fb9c..a8e03222 100644 --- a/src/main/java/org/assertj/db/exception/package-info.java +++ b/src/main/java/org/assertj/db/exception/package-info.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ /** * This package contains the different exception thrown when there is an unexpected situation. diff --git a/src/main/java/org/assertj/db/global/AbstractElement.java b/src/main/java/org/assertj/db/global/AbstractElement.java index ceb9bea1..c807cf89 100644 --- a/src/main/java/org/assertj/db/global/AbstractElement.java +++ b/src/main/java/org/assertj/db/global/AbstractElement.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.global; diff --git a/src/main/java/org/assertj/db/global/package-info.java b/src/main/java/org/assertj/db/global/package-info.java index bcbd0264..595112b8 100644 --- a/src/main/java/org/assertj/db/global/package-info.java +++ b/src/main/java/org/assertj/db/global/package-info.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ /** * This package contains the abstract class which is parent of all the elements. diff --git a/src/main/java/org/assertj/db/navigation/Navigation.java b/src/main/java/org/assertj/db/navigation/Navigation.java index 22347a9d..fff6684b 100644 --- a/src/main/java/org/assertj/db/navigation/Navigation.java +++ b/src/main/java/org/assertj/db/navigation/Navigation.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.navigation; diff --git a/src/main/java/org/assertj/db/navigation/Position.java b/src/main/java/org/assertj/db/navigation/Position.java index 9fc62344..1ae2b74f 100644 --- a/src/main/java/org/assertj/db/navigation/Position.java +++ b/src/main/java/org/assertj/db/navigation/Position.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.navigation; diff --git a/src/main/java/org/assertj/db/navigation/PositionWithChanges.java b/src/main/java/org/assertj/db/navigation/PositionWithChanges.java index 7252e62d..cb17fd96 100644 --- a/src/main/java/org/assertj/db/navigation/PositionWithChanges.java +++ b/src/main/java/org/assertj/db/navigation/PositionWithChanges.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.navigation; diff --git a/src/main/java/org/assertj/db/navigation/PositionWithColumns.java b/src/main/java/org/assertj/db/navigation/PositionWithColumns.java index 2208c95d..8bb81126 100644 --- a/src/main/java/org/assertj/db/navigation/PositionWithColumns.java +++ b/src/main/java/org/assertj/db/navigation/PositionWithColumns.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.navigation; diff --git a/src/main/java/org/assertj/db/navigation/PositionWithColumnsChange.java b/src/main/java/org/assertj/db/navigation/PositionWithColumnsChange.java index b8ce7ac9..8ca5f7bf 100644 --- a/src/main/java/org/assertj/db/navigation/PositionWithColumnsChange.java +++ b/src/main/java/org/assertj/db/navigation/PositionWithColumnsChange.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.navigation; diff --git a/src/main/java/org/assertj/db/navigation/PositionWithPoints.java b/src/main/java/org/assertj/db/navigation/PositionWithPoints.java index 56d70362..74a1e3fb 100644 --- a/src/main/java/org/assertj/db/navigation/PositionWithPoints.java +++ b/src/main/java/org/assertj/db/navigation/PositionWithPoints.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.navigation; diff --git a/src/main/java/org/assertj/db/navigation/ToChange.java b/src/main/java/org/assertj/db/navigation/ToChange.java index e1159830..dcf6e07b 100644 --- a/src/main/java/org/assertj/db/navigation/ToChange.java +++ b/src/main/java/org/assertj/db/navigation/ToChange.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.navigation; diff --git a/src/main/java/org/assertj/db/navigation/ToChanges.java b/src/main/java/org/assertj/db/navigation/ToChanges.java index 6010b526..895e5e28 100644 --- a/src/main/java/org/assertj/db/navigation/ToChanges.java +++ b/src/main/java/org/assertj/db/navigation/ToChanges.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.navigation; diff --git a/src/main/java/org/assertj/db/navigation/ToColumn.java b/src/main/java/org/assertj/db/navigation/ToColumn.java index e2ebe0d9..cbc4905e 100644 --- a/src/main/java/org/assertj/db/navigation/ToColumn.java +++ b/src/main/java/org/assertj/db/navigation/ToColumn.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.navigation; diff --git a/src/main/java/org/assertj/db/navigation/ToColumnFromChange.java b/src/main/java/org/assertj/db/navigation/ToColumnFromChange.java index 4a7c56e7..3e90b375 100644 --- a/src/main/java/org/assertj/db/navigation/ToColumnFromChange.java +++ b/src/main/java/org/assertj/db/navigation/ToColumnFromChange.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.navigation; diff --git a/src/main/java/org/assertj/db/navigation/ToRow.java b/src/main/java/org/assertj/db/navigation/ToRow.java index 28a3bef1..a2296b24 100644 --- a/src/main/java/org/assertj/db/navigation/ToRow.java +++ b/src/main/java/org/assertj/db/navigation/ToRow.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.navigation; diff --git a/src/main/java/org/assertj/db/navigation/ToRowFromChange.java b/src/main/java/org/assertj/db/navigation/ToRowFromChange.java index b8c8bb9a..21db1bac 100644 --- a/src/main/java/org/assertj/db/navigation/ToRowFromChange.java +++ b/src/main/java/org/assertj/db/navigation/ToRowFromChange.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.navigation; diff --git a/src/main/java/org/assertj/db/navigation/ToValue.java b/src/main/java/org/assertj/db/navigation/ToValue.java index f8684440..111c200d 100644 --- a/src/main/java/org/assertj/db/navigation/ToValue.java +++ b/src/main/java/org/assertj/db/navigation/ToValue.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.navigation; diff --git a/src/main/java/org/assertj/db/navigation/ToValueFromColumn.java b/src/main/java/org/assertj/db/navigation/ToValueFromColumn.java index 526922cb..3d55d1cb 100644 --- a/src/main/java/org/assertj/db/navigation/ToValueFromColumn.java +++ b/src/main/java/org/assertj/db/navigation/ToValueFromColumn.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.navigation; diff --git a/src/main/java/org/assertj/db/navigation/ToValueFromRow.java b/src/main/java/org/assertj/db/navigation/ToValueFromRow.java index 6e931d00..5aa3baac 100644 --- a/src/main/java/org/assertj/db/navigation/ToValueFromRow.java +++ b/src/main/java/org/assertj/db/navigation/ToValueFromRow.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.navigation; diff --git a/src/main/java/org/assertj/db/navigation/element/ChangeElement.java b/src/main/java/org/assertj/db/navigation/element/ChangeElement.java index 82e313a3..bbe29ba2 100644 --- a/src/main/java/org/assertj/db/navigation/element/ChangeElement.java +++ b/src/main/java/org/assertj/db/navigation/element/ChangeElement.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.navigation.element; diff --git a/src/main/java/org/assertj/db/navigation/element/ChangesElement.java b/src/main/java/org/assertj/db/navigation/element/ChangesElement.java index 1c2f1f07..74829d2e 100644 --- a/src/main/java/org/assertj/db/navigation/element/ChangesElement.java +++ b/src/main/java/org/assertj/db/navigation/element/ChangesElement.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.navigation.element; diff --git a/src/main/java/org/assertj/db/navigation/element/ColumnElement.java b/src/main/java/org/assertj/db/navigation/element/ColumnElement.java index c2a51715..af680b3b 100644 --- a/src/main/java/org/assertj/db/navigation/element/ColumnElement.java +++ b/src/main/java/org/assertj/db/navigation/element/ColumnElement.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.navigation.element; diff --git a/src/main/java/org/assertj/db/navigation/element/Element.java b/src/main/java/org/assertj/db/navigation/element/Element.java index e3cc4dd1..94a46be6 100644 --- a/src/main/java/org/assertj/db/navigation/element/Element.java +++ b/src/main/java/org/assertj/db/navigation/element/Element.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.navigation.element; diff --git a/src/main/java/org/assertj/db/navigation/element/RowElement.java b/src/main/java/org/assertj/db/navigation/element/RowElement.java index 3a4cdeeb..7348e4df 100644 --- a/src/main/java/org/assertj/db/navigation/element/RowElement.java +++ b/src/main/java/org/assertj/db/navigation/element/RowElement.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.navigation.element; diff --git a/src/main/java/org/assertj/db/navigation/element/ValueElement.java b/src/main/java/org/assertj/db/navigation/element/ValueElement.java index 48206d7b..d38f3972 100644 --- a/src/main/java/org/assertj/db/navigation/element/ValueElement.java +++ b/src/main/java/org/assertj/db/navigation/element/ValueElement.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.navigation.element; diff --git a/src/main/java/org/assertj/db/navigation/element/package-info.java b/src/main/java/org/assertj/db/navigation/element/package-info.java index 24c43c4b..5dd5e8fd 100644 --- a/src/main/java/org/assertj/db/navigation/element/package-info.java +++ b/src/main/java/org/assertj/db/navigation/element/package-info.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ /** * This package contains interfaces about the different elements in assertions or outputs. diff --git a/src/main/java/org/assertj/db/navigation/origin/Origin.java b/src/main/java/org/assertj/db/navigation/origin/Origin.java index 2b5941dc..fb39328a 100644 --- a/src/main/java/org/assertj/db/navigation/origin/Origin.java +++ b/src/main/java/org/assertj/db/navigation/origin/Origin.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.navigation.origin; diff --git a/src/main/java/org/assertj/db/navigation/origin/OriginWithChanges.java b/src/main/java/org/assertj/db/navigation/origin/OriginWithChanges.java index b554c28e..12780936 100644 --- a/src/main/java/org/assertj/db/navigation/origin/OriginWithChanges.java +++ b/src/main/java/org/assertj/db/navigation/origin/OriginWithChanges.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.navigation.origin; diff --git a/src/main/java/org/assertj/db/navigation/origin/OriginWithColumnsAndRows.java b/src/main/java/org/assertj/db/navigation/origin/OriginWithColumnsAndRows.java index 9a6f1a3f..af5dc451 100644 --- a/src/main/java/org/assertj/db/navigation/origin/OriginWithColumnsAndRows.java +++ b/src/main/java/org/assertj/db/navigation/origin/OriginWithColumnsAndRows.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.navigation.origin; diff --git a/src/main/java/org/assertj/db/navigation/origin/OriginWithColumnsAndRowsFromChange.java b/src/main/java/org/assertj/db/navigation/origin/OriginWithColumnsAndRowsFromChange.java index e29465c4..90372e1c 100644 --- a/src/main/java/org/assertj/db/navigation/origin/OriginWithColumnsAndRowsFromChange.java +++ b/src/main/java/org/assertj/db/navigation/origin/OriginWithColumnsAndRowsFromChange.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.navigation.origin; diff --git a/src/main/java/org/assertj/db/navigation/origin/OriginWithValuesFromColumn.java b/src/main/java/org/assertj/db/navigation/origin/OriginWithValuesFromColumn.java index 1396a524..5364f080 100644 --- a/src/main/java/org/assertj/db/navigation/origin/OriginWithValuesFromColumn.java +++ b/src/main/java/org/assertj/db/navigation/origin/OriginWithValuesFromColumn.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.navigation.origin; diff --git a/src/main/java/org/assertj/db/navigation/origin/OriginWithValuesFromRow.java b/src/main/java/org/assertj/db/navigation/origin/OriginWithValuesFromRow.java index d374713c..e6b3ee9d 100644 --- a/src/main/java/org/assertj/db/navigation/origin/OriginWithValuesFromRow.java +++ b/src/main/java/org/assertj/db/navigation/origin/OriginWithValuesFromRow.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.navigation.origin; diff --git a/src/main/java/org/assertj/db/navigation/origin/package-info.java b/src/main/java/org/assertj/db/navigation/origin/package-info.java index 3bc267ba..22756eb7 100644 --- a/src/main/java/org/assertj/db/navigation/origin/package-info.java +++ b/src/main/java/org/assertj/db/navigation/origin/package-info.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ /** * This package contains interfaces that defines the different {@link org.assertj.db.navigation.origin.Origin}s used by the navigation. diff --git a/src/main/java/org/assertj/db/navigation/package-info.java b/src/main/java/org/assertj/db/navigation/package-info.java index 02eeb34f..827af00e 100644 --- a/src/main/java/org/assertj/db/navigation/package-info.java +++ b/src/main/java/org/assertj/db/navigation/package-info.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ /** * This package contains interfaces that defines the different navigation methods. diff --git a/src/main/java/org/assertj/db/output/AbstractColumnOutputter.java b/src/main/java/org/assertj/db/output/AbstractColumnOutputter.java index 84570882..8be52c6d 100644 --- a/src/main/java/org/assertj/db/output/AbstractColumnOutputter.java +++ b/src/main/java/org/assertj/db/output/AbstractColumnOutputter.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.output; diff --git a/src/main/java/org/assertj/db/output/AbstractColumnValueOutputter.java b/src/main/java/org/assertj/db/output/AbstractColumnValueOutputter.java index 5787c2a3..67aae1a8 100644 --- a/src/main/java/org/assertj/db/output/AbstractColumnValueOutputter.java +++ b/src/main/java/org/assertj/db/output/AbstractColumnValueOutputter.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.output; diff --git a/src/main/java/org/assertj/db/output/AbstractDbOutputter.java b/src/main/java/org/assertj/db/output/AbstractDbOutputter.java index 80fcdd4a..486e2b71 100644 --- a/src/main/java/org/assertj/db/output/AbstractDbOutputter.java +++ b/src/main/java/org/assertj/db/output/AbstractDbOutputter.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.output; diff --git a/src/main/java/org/assertj/db/output/AbstractOutputter.java b/src/main/java/org/assertj/db/output/AbstractOutputter.java index 8efed0ca..707b577e 100644 --- a/src/main/java/org/assertj/db/output/AbstractOutputter.java +++ b/src/main/java/org/assertj/db/output/AbstractOutputter.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.output; diff --git a/src/main/java/org/assertj/db/output/AbstractOutputterWithOrigin.java b/src/main/java/org/assertj/db/output/AbstractOutputterWithOrigin.java index 23b3fed8..f8134511 100644 --- a/src/main/java/org/assertj/db/output/AbstractOutputterWithOrigin.java +++ b/src/main/java/org/assertj/db/output/AbstractOutputterWithOrigin.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.output; diff --git a/src/main/java/org/assertj/db/output/AbstractOutputterWithOriginWithChanges.java b/src/main/java/org/assertj/db/output/AbstractOutputterWithOriginWithChanges.java index 46e9dab7..3cd476a8 100644 --- a/src/main/java/org/assertj/db/output/AbstractOutputterWithOriginWithChanges.java +++ b/src/main/java/org/assertj/db/output/AbstractOutputterWithOriginWithChanges.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.output; diff --git a/src/main/java/org/assertj/db/output/AbstractOutputterWithOriginWithColumnsAndRows.java b/src/main/java/org/assertj/db/output/AbstractOutputterWithOriginWithColumnsAndRows.java index 97b997ea..deaa0dc9 100644 --- a/src/main/java/org/assertj/db/output/AbstractOutputterWithOriginWithColumnsAndRows.java +++ b/src/main/java/org/assertj/db/output/AbstractOutputterWithOriginWithColumnsAndRows.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.output; diff --git a/src/main/java/org/assertj/db/output/AbstractOutputterWithOriginWithColumnsAndRowsFromChange.java b/src/main/java/org/assertj/db/output/AbstractOutputterWithOriginWithColumnsAndRowsFromChange.java index 07a40f38..bf6ba1f2 100644 --- a/src/main/java/org/assertj/db/output/AbstractOutputterWithOriginWithColumnsAndRowsFromChange.java +++ b/src/main/java/org/assertj/db/output/AbstractOutputterWithOriginWithColumnsAndRowsFromChange.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.output; diff --git a/src/main/java/org/assertj/db/output/AbstractOutputterWithValues.java b/src/main/java/org/assertj/db/output/AbstractOutputterWithValues.java index b097d4b7..2e5ba975 100644 --- a/src/main/java/org/assertj/db/output/AbstractOutputterWithValues.java +++ b/src/main/java/org/assertj/db/output/AbstractOutputterWithValues.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.output; diff --git a/src/main/java/org/assertj/db/output/AbstractRowOutputter.java b/src/main/java/org/assertj/db/output/AbstractRowOutputter.java index 9367ff25..199542ee 100644 --- a/src/main/java/org/assertj/db/output/AbstractRowOutputter.java +++ b/src/main/java/org/assertj/db/output/AbstractRowOutputter.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.output; diff --git a/src/main/java/org/assertj/db/output/AbstractRowValueOutputter.java b/src/main/java/org/assertj/db/output/AbstractRowValueOutputter.java index 12ef91bc..05c69eda 100644 --- a/src/main/java/org/assertj/db/output/AbstractRowValueOutputter.java +++ b/src/main/java/org/assertj/db/output/AbstractRowValueOutputter.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.output; diff --git a/src/main/java/org/assertj/db/output/AbstractSubOutputter.java b/src/main/java/org/assertj/db/output/AbstractSubOutputter.java index 61fc6677..af0e03c0 100644 --- a/src/main/java/org/assertj/db/output/AbstractSubOutputter.java +++ b/src/main/java/org/assertj/db/output/AbstractSubOutputter.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.output; diff --git a/src/main/java/org/assertj/db/output/AbstractValueOutputter.java b/src/main/java/org/assertj/db/output/AbstractValueOutputter.java index dea75146..6f97508d 100644 --- a/src/main/java/org/assertj/db/output/AbstractValueOutputter.java +++ b/src/main/java/org/assertj/db/output/AbstractValueOutputter.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.output; diff --git a/src/main/java/org/assertj/db/output/ChangeColumnOutputter.java b/src/main/java/org/assertj/db/output/ChangeColumnOutputter.java index 38051665..ef927346 100644 --- a/src/main/java/org/assertj/db/output/ChangeColumnOutputter.java +++ b/src/main/java/org/assertj/db/output/ChangeColumnOutputter.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.output; diff --git a/src/main/java/org/assertj/db/output/ChangeColumnValueOutputter.java b/src/main/java/org/assertj/db/output/ChangeColumnValueOutputter.java index 2218ee0d..2caaa213 100644 --- a/src/main/java/org/assertj/db/output/ChangeColumnValueOutputter.java +++ b/src/main/java/org/assertj/db/output/ChangeColumnValueOutputter.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.output; diff --git a/src/main/java/org/assertj/db/output/ChangeOutputter.java b/src/main/java/org/assertj/db/output/ChangeOutputter.java index 4759a3a1..3b6715a8 100644 --- a/src/main/java/org/assertj/db/output/ChangeOutputter.java +++ b/src/main/java/org/assertj/db/output/ChangeOutputter.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.output; diff --git a/src/main/java/org/assertj/db/output/ChangeRowOutputter.java b/src/main/java/org/assertj/db/output/ChangeRowOutputter.java index e2a75234..d40b82bf 100644 --- a/src/main/java/org/assertj/db/output/ChangeRowOutputter.java +++ b/src/main/java/org/assertj/db/output/ChangeRowOutputter.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.output; diff --git a/src/main/java/org/assertj/db/output/ChangeRowValueOutputter.java b/src/main/java/org/assertj/db/output/ChangeRowValueOutputter.java index f5f4bc09..63b95985 100644 --- a/src/main/java/org/assertj/db/output/ChangeRowValueOutputter.java +++ b/src/main/java/org/assertj/db/output/ChangeRowValueOutputter.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.output; diff --git a/src/main/java/org/assertj/db/output/ChangesOutputter.java b/src/main/java/org/assertj/db/output/ChangesOutputter.java index b16842d6..9b8fcaa8 100644 --- a/src/main/java/org/assertj/db/output/ChangesOutputter.java +++ b/src/main/java/org/assertj/db/output/ChangesOutputter.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.output; diff --git a/src/main/java/org/assertj/db/output/Outputs.java b/src/main/java/org/assertj/db/output/Outputs.java index 5e9d0c79..db505202 100644 --- a/src/main/java/org/assertj/db/output/Outputs.java +++ b/src/main/java/org/assertj/db/output/Outputs.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.output; diff --git a/src/main/java/org/assertj/db/output/RequestColumnOutputter.java b/src/main/java/org/assertj/db/output/RequestColumnOutputter.java index dec84729..ec889eed 100644 --- a/src/main/java/org/assertj/db/output/RequestColumnOutputter.java +++ b/src/main/java/org/assertj/db/output/RequestColumnOutputter.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.output; diff --git a/src/main/java/org/assertj/db/output/RequestColumnValueOutputter.java b/src/main/java/org/assertj/db/output/RequestColumnValueOutputter.java index 6c279eed..245e20da 100644 --- a/src/main/java/org/assertj/db/output/RequestColumnValueOutputter.java +++ b/src/main/java/org/assertj/db/output/RequestColumnValueOutputter.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.output; diff --git a/src/main/java/org/assertj/db/output/RequestOutputter.java b/src/main/java/org/assertj/db/output/RequestOutputter.java index cf3f0ca0..d6282a7c 100644 --- a/src/main/java/org/assertj/db/output/RequestOutputter.java +++ b/src/main/java/org/assertj/db/output/RequestOutputter.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.output; diff --git a/src/main/java/org/assertj/db/output/RequestRowOutputter.java b/src/main/java/org/assertj/db/output/RequestRowOutputter.java index 563322d8..c5ae5f90 100644 --- a/src/main/java/org/assertj/db/output/RequestRowOutputter.java +++ b/src/main/java/org/assertj/db/output/RequestRowOutputter.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.output; diff --git a/src/main/java/org/assertj/db/output/RequestRowValueOutputter.java b/src/main/java/org/assertj/db/output/RequestRowValueOutputter.java index bdea28d6..fd2c91e9 100644 --- a/src/main/java/org/assertj/db/output/RequestRowValueOutputter.java +++ b/src/main/java/org/assertj/db/output/RequestRowValueOutputter.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.output; diff --git a/src/main/java/org/assertj/db/output/TableColumnOutputter.java b/src/main/java/org/assertj/db/output/TableColumnOutputter.java index 002dcb34..315c4fdc 100644 --- a/src/main/java/org/assertj/db/output/TableColumnOutputter.java +++ b/src/main/java/org/assertj/db/output/TableColumnOutputter.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.output; diff --git a/src/main/java/org/assertj/db/output/TableColumnValueOutputter.java b/src/main/java/org/assertj/db/output/TableColumnValueOutputter.java index 988a5608..433806d9 100644 --- a/src/main/java/org/assertj/db/output/TableColumnValueOutputter.java +++ b/src/main/java/org/assertj/db/output/TableColumnValueOutputter.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.output; diff --git a/src/main/java/org/assertj/db/output/TableOutputter.java b/src/main/java/org/assertj/db/output/TableOutputter.java index 2cc01df1..435c0215 100644 --- a/src/main/java/org/assertj/db/output/TableOutputter.java +++ b/src/main/java/org/assertj/db/output/TableOutputter.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.output; diff --git a/src/main/java/org/assertj/db/output/TableRowOutputter.java b/src/main/java/org/assertj/db/output/TableRowOutputter.java index f5aaee3a..a3624201 100644 --- a/src/main/java/org/assertj/db/output/TableRowOutputter.java +++ b/src/main/java/org/assertj/db/output/TableRowOutputter.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.output; diff --git a/src/main/java/org/assertj/db/output/TableRowValueOutputter.java b/src/main/java/org/assertj/db/output/TableRowValueOutputter.java index eb9125ed..1e7bcc2c 100644 --- a/src/main/java/org/assertj/db/output/TableRowValueOutputter.java +++ b/src/main/java/org/assertj/db/output/TableRowValueOutputter.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.output; diff --git a/src/main/java/org/assertj/db/output/impl/HtmlOutput.java b/src/main/java/org/assertj/db/output/impl/HtmlOutput.java index 17588560..737c6efe 100644 --- a/src/main/java/org/assertj/db/output/impl/HtmlOutput.java +++ b/src/main/java/org/assertj/db/output/impl/HtmlOutput.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.output.impl; diff --git a/src/main/java/org/assertj/db/output/impl/Output.java b/src/main/java/org/assertj/db/output/impl/Output.java index db3fd743..f9974301 100644 --- a/src/main/java/org/assertj/db/output/impl/Output.java +++ b/src/main/java/org/assertj/db/output/impl/Output.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.output.impl; diff --git a/src/main/java/org/assertj/db/output/impl/OutputType.java b/src/main/java/org/assertj/db/output/impl/OutputType.java index 0ec68628..e63c4653 100644 --- a/src/main/java/org/assertj/db/output/impl/OutputType.java +++ b/src/main/java/org/assertj/db/output/impl/OutputType.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.output.impl; diff --git a/src/main/java/org/assertj/db/output/impl/PlainOutput.java b/src/main/java/org/assertj/db/output/impl/PlainOutput.java index c9d277ac..a1c0ce36 100644 --- a/src/main/java/org/assertj/db/output/impl/PlainOutput.java +++ b/src/main/java/org/assertj/db/output/impl/PlainOutput.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.output.impl; diff --git a/src/main/java/org/assertj/db/output/impl/package-info.java b/src/main/java/org/assertj/db/output/impl/package-info.java index 7904b124..dd2c5eba 100644 --- a/src/main/java/org/assertj/db/output/impl/package-info.java +++ b/src/main/java/org/assertj/db/output/impl/package-info.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ /** * This package contains utility classes about the output. diff --git a/src/main/java/org/assertj/db/output/package-info.java b/src/main/java/org/assertj/db/output/package-info.java index 6de0c73a..35b90579 100644 --- a/src/main/java/org/assertj/db/output/package-info.java +++ b/src/main/java/org/assertj/db/output/package-info.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ /** * This package contains classes that allows to output the information about table, request or changes. diff --git a/src/main/java/org/assertj/db/type/AbstractDbData.java b/src/main/java/org/assertj/db/type/AbstractDbData.java index c621982e..563113c4 100644 --- a/src/main/java/org/assertj/db/type/AbstractDbData.java +++ b/src/main/java/org/assertj/db/type/AbstractDbData.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.type; diff --git a/src/main/java/org/assertj/db/type/AbstractDbElement.java b/src/main/java/org/assertj/db/type/AbstractDbElement.java index 231b33a9..02cce6e7 100644 --- a/src/main/java/org/assertj/db/type/AbstractDbElement.java +++ b/src/main/java/org/assertj/db/type/AbstractDbElement.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.type; diff --git a/src/main/java/org/assertj/db/type/Change.java b/src/main/java/org/assertj/db/type/Change.java index d5db8010..10f430a7 100644 --- a/src/main/java/org/assertj/db/type/Change.java +++ b/src/main/java/org/assertj/db/type/Change.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.type; diff --git a/src/main/java/org/assertj/db/type/ChangeType.java b/src/main/java/org/assertj/db/type/ChangeType.java index fc50ccb6..bfd68413 100644 --- a/src/main/java/org/assertj/db/type/ChangeType.java +++ b/src/main/java/org/assertj/db/type/ChangeType.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.type; diff --git a/src/main/java/org/assertj/db/type/Changes.java b/src/main/java/org/assertj/db/type/Changes.java index 2b61f8cc..7b1b3f81 100644 --- a/src/main/java/org/assertj/db/type/Changes.java +++ b/src/main/java/org/assertj/db/type/Changes.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.type; diff --git a/src/main/java/org/assertj/db/type/Column.java b/src/main/java/org/assertj/db/type/Column.java index d3f414d2..7ca189a4 100644 --- a/src/main/java/org/assertj/db/type/Column.java +++ b/src/main/java/org/assertj/db/type/Column.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.type; diff --git a/src/main/java/org/assertj/db/type/DataSourceWithLetterCase.java b/src/main/java/org/assertj/db/type/DataSourceWithLetterCase.java index 2ccffd9c..23ca2e0e 100644 --- a/src/main/java/org/assertj/db/type/DataSourceWithLetterCase.java +++ b/src/main/java/org/assertj/db/type/DataSourceWithLetterCase.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.type; diff --git a/src/main/java/org/assertj/db/type/DataType.java b/src/main/java/org/assertj/db/type/DataType.java index 73b8e505..8fe12cae 100644 --- a/src/main/java/org/assertj/db/type/DataType.java +++ b/src/main/java/org/assertj/db/type/DataType.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.type; diff --git a/src/main/java/org/assertj/db/type/DateTimeValue.java b/src/main/java/org/assertj/db/type/DateTimeValue.java index e1e54f39..66ad13ad 100644 --- a/src/main/java/org/assertj/db/type/DateTimeValue.java +++ b/src/main/java/org/assertj/db/type/DateTimeValue.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.type; diff --git a/src/main/java/org/assertj/db/type/DateValue.java b/src/main/java/org/assertj/db/type/DateValue.java index 3e654aed..ed6469d5 100644 --- a/src/main/java/org/assertj/db/type/DateValue.java +++ b/src/main/java/org/assertj/db/type/DateValue.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.type; diff --git a/src/main/java/org/assertj/db/type/DateValueContainer.java b/src/main/java/org/assertj/db/type/DateValueContainer.java index 5c9a2aef..2891bd75 100644 --- a/src/main/java/org/assertj/db/type/DateValueContainer.java +++ b/src/main/java/org/assertj/db/type/DateValueContainer.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.type; diff --git a/src/main/java/org/assertj/db/type/DbElement.java b/src/main/java/org/assertj/db/type/DbElement.java index 483ac321..11a7467d 100644 --- a/src/main/java/org/assertj/db/type/DbElement.java +++ b/src/main/java/org/assertj/db/type/DbElement.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.type; diff --git a/src/main/java/org/assertj/db/type/Request.java b/src/main/java/org/assertj/db/type/Request.java index 7772194f..83024a95 100644 --- a/src/main/java/org/assertj/db/type/Request.java +++ b/src/main/java/org/assertj/db/type/Request.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.type; diff --git a/src/main/java/org/assertj/db/type/Row.java b/src/main/java/org/assertj/db/type/Row.java index 4cc64e4a..24ee3966 100644 --- a/src/main/java/org/assertj/db/type/Row.java +++ b/src/main/java/org/assertj/db/type/Row.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.type; diff --git a/src/main/java/org/assertj/db/type/Source.java b/src/main/java/org/assertj/db/type/Source.java index b649caf7..333f3897 100644 --- a/src/main/java/org/assertj/db/type/Source.java +++ b/src/main/java/org/assertj/db/type/Source.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.type; diff --git a/src/main/java/org/assertj/db/type/SourceWithLetterCase.java b/src/main/java/org/assertj/db/type/SourceWithLetterCase.java index 1986a379..a4c412bd 100644 --- a/src/main/java/org/assertj/db/type/SourceWithLetterCase.java +++ b/src/main/java/org/assertj/db/type/SourceWithLetterCase.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.type; diff --git a/src/main/java/org/assertj/db/type/Table.java b/src/main/java/org/assertj/db/type/Table.java index c2852724..f1103c5b 100644 --- a/src/main/java/org/assertj/db/type/Table.java +++ b/src/main/java/org/assertj/db/type/Table.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.type; diff --git a/src/main/java/org/assertj/db/type/TimeValue.java b/src/main/java/org/assertj/db/type/TimeValue.java index 0fdc8dd7..7e126b85 100644 --- a/src/main/java/org/assertj/db/type/TimeValue.java +++ b/src/main/java/org/assertj/db/type/TimeValue.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.type; diff --git a/src/main/java/org/assertj/db/type/Value.java b/src/main/java/org/assertj/db/type/Value.java index eadcc8bc..91dcbcf6 100644 --- a/src/main/java/org/assertj/db/type/Value.java +++ b/src/main/java/org/assertj/db/type/Value.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.type; diff --git a/src/main/java/org/assertj/db/type/ValueType.java b/src/main/java/org/assertj/db/type/ValueType.java index 8c98a9c3..f428adb6 100644 --- a/src/main/java/org/assertj/db/type/ValueType.java +++ b/src/main/java/org/assertj/db/type/ValueType.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.type; diff --git a/src/main/java/org/assertj/db/type/lettercase/CaseComparison.java b/src/main/java/org/assertj/db/type/lettercase/CaseComparison.java index b2fdd9cb..4921580b 100644 --- a/src/main/java/org/assertj/db/type/lettercase/CaseComparison.java +++ b/src/main/java/org/assertj/db/type/lettercase/CaseComparison.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.type.lettercase; diff --git a/src/main/java/org/assertj/db/type/lettercase/CaseComparisons.java b/src/main/java/org/assertj/db/type/lettercase/CaseComparisons.java index f794bb7d..e6269053 100644 --- a/src/main/java/org/assertj/db/type/lettercase/CaseComparisons.java +++ b/src/main/java/org/assertj/db/type/lettercase/CaseComparisons.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.type.lettercase; diff --git a/src/main/java/org/assertj/db/type/lettercase/CaseConversion.java b/src/main/java/org/assertj/db/type/lettercase/CaseConversion.java index b41963e4..fe66dec8 100644 --- a/src/main/java/org/assertj/db/type/lettercase/CaseConversion.java +++ b/src/main/java/org/assertj/db/type/lettercase/CaseConversion.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.type.lettercase; diff --git a/src/main/java/org/assertj/db/type/lettercase/CaseConversions.java b/src/main/java/org/assertj/db/type/lettercase/CaseConversions.java index a1827411..50800aa8 100644 --- a/src/main/java/org/assertj/db/type/lettercase/CaseConversions.java +++ b/src/main/java/org/assertj/db/type/lettercase/CaseConversions.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.type.lettercase; diff --git a/src/main/java/org/assertj/db/type/lettercase/LetterCase.java b/src/main/java/org/assertj/db/type/lettercase/LetterCase.java index 9df55d8c..8ec94e77 100644 --- a/src/main/java/org/assertj/db/type/lettercase/LetterCase.java +++ b/src/main/java/org/assertj/db/type/lettercase/LetterCase.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.type.lettercase; diff --git a/src/main/java/org/assertj/db/type/lettercase/WithColumnLetterCase.java b/src/main/java/org/assertj/db/type/lettercase/WithColumnLetterCase.java index cab54400..20294a99 100644 --- a/src/main/java/org/assertj/db/type/lettercase/WithColumnLetterCase.java +++ b/src/main/java/org/assertj/db/type/lettercase/WithColumnLetterCase.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.type.lettercase; diff --git a/src/main/java/org/assertj/db/type/lettercase/WithLetterCase.java b/src/main/java/org/assertj/db/type/lettercase/WithLetterCase.java index cf69c97c..ffc79e7d 100644 --- a/src/main/java/org/assertj/db/type/lettercase/WithLetterCase.java +++ b/src/main/java/org/assertj/db/type/lettercase/WithLetterCase.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.type.lettercase; diff --git a/src/main/java/org/assertj/db/type/lettercase/WithPrimaryKeyLetterCase.java b/src/main/java/org/assertj/db/type/lettercase/WithPrimaryKeyLetterCase.java index 737bdda1..9a85927a 100644 --- a/src/main/java/org/assertj/db/type/lettercase/WithPrimaryKeyLetterCase.java +++ b/src/main/java/org/assertj/db/type/lettercase/WithPrimaryKeyLetterCase.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.type.lettercase; diff --git a/src/main/java/org/assertj/db/type/lettercase/WithTableLetterCase.java b/src/main/java/org/assertj/db/type/lettercase/WithTableLetterCase.java index 2fa8f7da..77e53bce 100644 --- a/src/main/java/org/assertj/db/type/lettercase/WithTableLetterCase.java +++ b/src/main/java/org/assertj/db/type/lettercase/WithTableLetterCase.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.type.lettercase; diff --git a/src/main/java/org/assertj/db/type/lettercase/package-info.java b/src/main/java/org/assertj/db/type/lettercase/package-info.java index b46d5022..7abb69e9 100644 --- a/src/main/java/org/assertj/db/type/lettercase/package-info.java +++ b/src/main/java/org/assertj/db/type/lettercase/package-info.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ /** * This package contains the interfaces and utility classes about the letter case. diff --git a/src/main/java/org/assertj/db/type/package-info.java b/src/main/java/org/assertj/db/type/package-info.java index a5c32ebb..069d868b 100644 --- a/src/main/java/org/assertj/db/type/package-info.java +++ b/src/main/java/org/assertj/db/type/package-info.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ /** * This package contains the classes that defines the different types used in assertj-db. diff --git a/src/main/java/org/assertj/db/util/ChangeComparator.java b/src/main/java/org/assertj/db/util/ChangeComparator.java index 0833f10d..39190550 100644 --- a/src/main/java/org/assertj/db/util/ChangeComparator.java +++ b/src/main/java/org/assertj/db/util/ChangeComparator.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.util; diff --git a/src/main/java/org/assertj/db/util/Changes.java b/src/main/java/org/assertj/db/util/Changes.java index 0678261a..347c1697 100644 --- a/src/main/java/org/assertj/db/util/Changes.java +++ b/src/main/java/org/assertj/db/util/Changes.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.util; diff --git a/src/main/java/org/assertj/db/util/Descriptions.java b/src/main/java/org/assertj/db/util/Descriptions.java index f330170c..1ea13a9d 100644 --- a/src/main/java/org/assertj/db/util/Descriptions.java +++ b/src/main/java/org/assertj/db/util/Descriptions.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.util; diff --git a/src/main/java/org/assertj/db/util/NameComparator.java b/src/main/java/org/assertj/db/util/NameComparator.java index bcc8706c..a2781cfa 100644 --- a/src/main/java/org/assertj/db/util/NameComparator.java +++ b/src/main/java/org/assertj/db/util/NameComparator.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.util; diff --git a/src/main/java/org/assertj/db/util/Proxies.java b/src/main/java/org/assertj/db/util/Proxies.java index 71ba249a..0c5871ae 100644 --- a/src/main/java/org/assertj/db/util/Proxies.java +++ b/src/main/java/org/assertj/db/util/Proxies.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.util; diff --git a/src/main/java/org/assertj/db/util/RowComparator.java b/src/main/java/org/assertj/db/util/RowComparator.java index 2cfe0a48..b4285d12 100644 --- a/src/main/java/org/assertj/db/util/RowComparator.java +++ b/src/main/java/org/assertj/db/util/RowComparator.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.util; diff --git a/src/main/java/org/assertj/db/util/Values.java b/src/main/java/org/assertj/db/util/Values.java index 3897c88f..ae8ed343 100644 --- a/src/main/java/org/assertj/db/util/Values.java +++ b/src/main/java/org/assertj/db/util/Values.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.util; diff --git a/src/main/java/org/assertj/db/util/package-info.java b/src/main/java/org/assertj/db/util/package-info.java index 4bff4a60..0ac3d73d 100644 --- a/src/main/java/org/assertj/db/util/package-info.java +++ b/src/main/java/org/assertj/db/util/package-info.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ /** * This package contains the utility classes of assertj-db. diff --git a/src/test/java/org/assertj/db/api/AssertOnColumnOfChangeEquality_HasValues_One_Character_Test.java b/src/test/java/org/assertj/db/api/AssertOnColumnOfChangeEquality_HasValues_One_Character_Test.java index 70240427..fa5929b1 100644 --- a/src/test/java/org/assertj/db/api/AssertOnColumnOfChangeEquality_HasValues_One_Character_Test.java +++ b/src/test/java/org/assertj/db/api/AssertOnColumnOfChangeEquality_HasValues_One_Character_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.api; diff --git a/src/test/java/org/assertj/db/api/Assertions_BytesContent_Test.java b/src/test/java/org/assertj/db/api/Assertions_BytesContent_Test.java index 93a82e6c..f39dfbc7 100644 --- a/src/test/java/org/assertj/db/api/Assertions_BytesContent_Test.java +++ b/src/test/java/org/assertj/db/api/Assertions_BytesContent_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.api; diff --git a/src/test/java/org/assertj/db/api/Assertions_Constructor_Test.java b/src/test/java/org/assertj/db/api/Assertions_Constructor_Test.java index 19e45d9a..ce6ba02e 100644 --- a/src/test/java/org/assertj/db/api/Assertions_Constructor_Test.java +++ b/src/test/java/org/assertj/db/api/Assertions_Constructor_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.api; diff --git a/src/test/java/org/assertj/db/api/BDDAssertions_BytesContent_Test.java b/src/test/java/org/assertj/db/api/BDDAssertions_BytesContent_Test.java index 90588932..c0d56656 100644 --- a/src/test/java/org/assertj/db/api/BDDAssertions_BytesContent_Test.java +++ b/src/test/java/org/assertj/db/api/BDDAssertions_BytesContent_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.api; diff --git a/src/test/java/org/assertj/db/api/BDDAssertions_Constructor_Test.java b/src/test/java/org/assertj/db/api/BDDAssertions_Constructor_Test.java index bedf500f..df18932d 100644 --- a/src/test/java/org/assertj/db/api/BDDAssertions_Constructor_Test.java +++ b/src/test/java/org/assertj/db/api/BDDAssertions_Constructor_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.api; diff --git a/src/test/java/org/assertj/db/api/DefaultDescription_Test.java b/src/test/java/org/assertj/db/api/DefaultDescription_Test.java index 3bbe7dc1..c0c7aa21 100644 --- a/src/test/java/org/assertj/db/api/DefaultDescription_Test.java +++ b/src/test/java/org/assertj/db/api/DefaultDescription_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.api; diff --git a/src/test/java/org/assertj/db/api/Descriptable_Test.java b/src/test/java/org/assertj/db/api/Descriptable_Test.java index b55244ac..d0ca97d6 100644 --- a/src/test/java/org/assertj/db/api/Descriptable_Test.java +++ b/src/test/java/org/assertj/db/api/Descriptable_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.api; diff --git a/src/test/java/org/assertj/db/api/EntryPointsComparison_Test.java b/src/test/java/org/assertj/db/api/EntryPointsComparison_Test.java index 163eac34..8d637fd5 100644 --- a/src/test/java/org/assertj/db/api/EntryPointsComparison_Test.java +++ b/src/test/java/org/assertj/db/api/EntryPointsComparison_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.api; diff --git a/src/test/java/org/assertj/db/api/SoftAssertions_Test.java b/src/test/java/org/assertj/db/api/SoftAssertions_Test.java index 984c8280..169813ac 100644 --- a/src/test/java/org/assertj/db/api/SoftAssertions_Test.java +++ b/src/test/java/org/assertj/db/api/SoftAssertions_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.api; diff --git a/src/test/java/org/assertj/db/api/assertions/AssertOnChangeType_IsCreation_Test.java b/src/test/java/org/assertj/db/api/assertions/AssertOnChangeType_IsCreation_Test.java index f79e40c3..ef00c0e3 100644 --- a/src/test/java/org/assertj/db/api/assertions/AssertOnChangeType_IsCreation_Test.java +++ b/src/test/java/org/assertj/db/api/assertions/AssertOnChangeType_IsCreation_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.api.assertions; diff --git a/src/test/java/org/assertj/db/api/assertions/AssertOnChangeType_IsDeletion_Test.java b/src/test/java/org/assertj/db/api/assertions/AssertOnChangeType_IsDeletion_Test.java index c089c062..4e95c7de 100644 --- a/src/test/java/org/assertj/db/api/assertions/AssertOnChangeType_IsDeletion_Test.java +++ b/src/test/java/org/assertj/db/api/assertions/AssertOnChangeType_IsDeletion_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.api.assertions; diff --git a/src/test/java/org/assertj/db/api/assertions/AssertOnChangeType_IsModification_Test.java b/src/test/java/org/assertj/db/api/assertions/AssertOnChangeType_IsModification_Test.java index 44c05c5a..a0e0369b 100644 --- a/src/test/java/org/assertj/db/api/assertions/AssertOnChangeType_IsModification_Test.java +++ b/src/test/java/org/assertj/db/api/assertions/AssertOnChangeType_IsModification_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.api.assertions; diff --git a/src/test/java/org/assertj/db/api/assertions/AssertOnChangeType_IsOfType_Test.java b/src/test/java/org/assertj/db/api/assertions/AssertOnChangeType_IsOfType_Test.java index c7e85e17..465cf578 100644 --- a/src/test/java/org/assertj/db/api/assertions/AssertOnChangeType_IsOfType_Test.java +++ b/src/test/java/org/assertj/db/api/assertions/AssertOnChangeType_IsOfType_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.api.assertions; diff --git a/src/test/java/org/assertj/db/api/assertions/AssertOnColumnClass_IsOfClass_Test.java b/src/test/java/org/assertj/db/api/assertions/AssertOnColumnClass_IsOfClass_Test.java index c718072b..d6960b49 100644 --- a/src/test/java/org/assertj/db/api/assertions/AssertOnColumnClass_IsOfClass_Test.java +++ b/src/test/java/org/assertj/db/api/assertions/AssertOnColumnClass_IsOfClass_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.api.assertions; diff --git a/src/test/java/org/assertj/db/api/assertions/AssertOnColumnContent_ContainsValues_Boolean_Test.java b/src/test/java/org/assertj/db/api/assertions/AssertOnColumnContent_ContainsValues_Boolean_Test.java index a6bdc7ec..c8ef0e98 100644 --- a/src/test/java/org/assertj/db/api/assertions/AssertOnColumnContent_ContainsValues_Boolean_Test.java +++ b/src/test/java/org/assertj/db/api/assertions/AssertOnColumnContent_ContainsValues_Boolean_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.api.assertions; diff --git a/src/test/java/org/assertj/db/api/assertions/AssertOnColumnContent_ContainsValues_Bytes_Test.java b/src/test/java/org/assertj/db/api/assertions/AssertOnColumnContent_ContainsValues_Bytes_Test.java index 23f53d4e..42892e2c 100644 --- a/src/test/java/org/assertj/db/api/assertions/AssertOnColumnContent_ContainsValues_Bytes_Test.java +++ b/src/test/java/org/assertj/db/api/assertions/AssertOnColumnContent_ContainsValues_Bytes_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.api.assertions; diff --git a/src/test/java/org/assertj/db/api/assertions/AssertOnColumnContent_ContainsValues_Character_Test.java b/src/test/java/org/assertj/db/api/assertions/AssertOnColumnContent_ContainsValues_Character_Test.java index 704d1a29..4595a0d8 100644 --- a/src/test/java/org/assertj/db/api/assertions/AssertOnColumnContent_ContainsValues_Character_Test.java +++ b/src/test/java/org/assertj/db/api/assertions/AssertOnColumnContent_ContainsValues_Character_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.api.assertions; diff --git a/src/test/java/org/assertj/db/api/assertions/AssertOnColumnContent_ContainsValues_DateTimeValue_Test.java b/src/test/java/org/assertj/db/api/assertions/AssertOnColumnContent_ContainsValues_DateTimeValue_Test.java index 4222fede..e7effd65 100644 --- a/src/test/java/org/assertj/db/api/assertions/AssertOnColumnContent_ContainsValues_DateTimeValue_Test.java +++ b/src/test/java/org/assertj/db/api/assertions/AssertOnColumnContent_ContainsValues_DateTimeValue_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.api.assertions; diff --git a/src/test/java/org/assertj/db/api/assertions/AssertOnColumnContent_ContainsValues_DateValue_Test.java b/src/test/java/org/assertj/db/api/assertions/AssertOnColumnContent_ContainsValues_DateValue_Test.java index a6ca1e2b..cf5ed6e9 100644 --- a/src/test/java/org/assertj/db/api/assertions/AssertOnColumnContent_ContainsValues_DateValue_Test.java +++ b/src/test/java/org/assertj/db/api/assertions/AssertOnColumnContent_ContainsValues_DateValue_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.api.assertions; diff --git a/src/test/java/org/assertj/db/api/assertions/AssertOnColumnContent_ContainsValues_Number_Test.java b/src/test/java/org/assertj/db/api/assertions/AssertOnColumnContent_ContainsValues_Number_Test.java index 484d15be..797433aa 100644 --- a/src/test/java/org/assertj/db/api/assertions/AssertOnColumnContent_ContainsValues_Number_Test.java +++ b/src/test/java/org/assertj/db/api/assertions/AssertOnColumnContent_ContainsValues_Number_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.api.assertions; diff --git a/src/test/java/org/assertj/db/api/assertions/AssertOnColumnContent_ContainsValues_String_Test.java b/src/test/java/org/assertj/db/api/assertions/AssertOnColumnContent_ContainsValues_String_Test.java index 5660a701..16e34951 100644 --- a/src/test/java/org/assertj/db/api/assertions/AssertOnColumnContent_ContainsValues_String_Test.java +++ b/src/test/java/org/assertj/db/api/assertions/AssertOnColumnContent_ContainsValues_String_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.api.assertions; diff --git a/src/test/java/org/assertj/db/api/assertions/AssertOnColumnContent_HasValues_TimeValue_Test.java b/src/test/java/org/assertj/db/api/assertions/AssertOnColumnContent_HasValues_TimeValue_Test.java index 1b77dad7..ba08b17d 100644 --- a/src/test/java/org/assertj/db/api/assertions/AssertOnColumnContent_HasValues_TimeValue_Test.java +++ b/src/test/java/org/assertj/db/api/assertions/AssertOnColumnContent_HasValues_TimeValue_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.api.assertions; diff --git a/src/test/java/org/assertj/db/api/assertions/AssertOnColumnContent_HasValues_UUID_Test.java b/src/test/java/org/assertj/db/api/assertions/AssertOnColumnContent_HasValues_UUID_Test.java index e44e6820..d3d916da 100644 --- a/src/test/java/org/assertj/db/api/assertions/AssertOnColumnContent_HasValues_UUID_Test.java +++ b/src/test/java/org/assertj/db/api/assertions/AssertOnColumnContent_HasValues_UUID_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.api.assertions; diff --git a/src/test/java/org/assertj/db/api/assertions/AssertOnColumnEquality_HasValues_Boolean_Test.java b/src/test/java/org/assertj/db/api/assertions/AssertOnColumnEquality_HasValues_Boolean_Test.java index 2624e620..14139df5 100644 --- a/src/test/java/org/assertj/db/api/assertions/AssertOnColumnEquality_HasValues_Boolean_Test.java +++ b/src/test/java/org/assertj/db/api/assertions/AssertOnColumnEquality_HasValues_Boolean_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.api.assertions; diff --git a/src/test/java/org/assertj/db/api/assertions/AssertOnColumnEquality_HasValues_Bytes_Test.java b/src/test/java/org/assertj/db/api/assertions/AssertOnColumnEquality_HasValues_Bytes_Test.java index 78c4388d..c6418e17 100644 --- a/src/test/java/org/assertj/db/api/assertions/AssertOnColumnEquality_HasValues_Bytes_Test.java +++ b/src/test/java/org/assertj/db/api/assertions/AssertOnColumnEquality_HasValues_Bytes_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.api.assertions; diff --git a/src/test/java/org/assertj/db/api/assertions/AssertOnColumnEquality_HasValues_Character_Test.java b/src/test/java/org/assertj/db/api/assertions/AssertOnColumnEquality_HasValues_Character_Test.java index c0df937e..c3a223d1 100644 --- a/src/test/java/org/assertj/db/api/assertions/AssertOnColumnEquality_HasValues_Character_Test.java +++ b/src/test/java/org/assertj/db/api/assertions/AssertOnColumnEquality_HasValues_Character_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.api.assertions; diff --git a/src/test/java/org/assertj/db/api/assertions/AssertOnColumnEquality_HasValues_DateTimeValue_Test.java b/src/test/java/org/assertj/db/api/assertions/AssertOnColumnEquality_HasValues_DateTimeValue_Test.java index 88cb4aba..82045857 100644 --- a/src/test/java/org/assertj/db/api/assertions/AssertOnColumnEquality_HasValues_DateTimeValue_Test.java +++ b/src/test/java/org/assertj/db/api/assertions/AssertOnColumnEquality_HasValues_DateTimeValue_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.api.assertions; diff --git a/src/test/java/org/assertj/db/api/assertions/AssertOnColumnEquality_HasValues_DateValue_Test.java b/src/test/java/org/assertj/db/api/assertions/AssertOnColumnEquality_HasValues_DateValue_Test.java index 5de0522d..bbd0b293 100644 --- a/src/test/java/org/assertj/db/api/assertions/AssertOnColumnEquality_HasValues_DateValue_Test.java +++ b/src/test/java/org/assertj/db/api/assertions/AssertOnColumnEquality_HasValues_DateValue_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.api.assertions; diff --git a/src/test/java/org/assertj/db/api/assertions/AssertOnColumnEquality_HasValues_Number_Test.java b/src/test/java/org/assertj/db/api/assertions/AssertOnColumnEquality_HasValues_Number_Test.java index 3b19ea67..a5a796a2 100644 --- a/src/test/java/org/assertj/db/api/assertions/AssertOnColumnEquality_HasValues_Number_Test.java +++ b/src/test/java/org/assertj/db/api/assertions/AssertOnColumnEquality_HasValues_Number_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.api.assertions; diff --git a/src/test/java/org/assertj/db/api/assertions/AssertOnColumnEquality_HasValues_String_Test.java b/src/test/java/org/assertj/db/api/assertions/AssertOnColumnEquality_HasValues_String_Test.java index e88a2783..41ee52b5 100644 --- a/src/test/java/org/assertj/db/api/assertions/AssertOnColumnEquality_HasValues_String_Test.java +++ b/src/test/java/org/assertj/db/api/assertions/AssertOnColumnEquality_HasValues_String_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.api.assertions; diff --git a/src/test/java/org/assertj/db/api/assertions/AssertOnColumnEquality_HasValues_TimeValue_Test.java b/src/test/java/org/assertj/db/api/assertions/AssertOnColumnEquality_HasValues_TimeValue_Test.java index 6df261dc..55426530 100644 --- a/src/test/java/org/assertj/db/api/assertions/AssertOnColumnEquality_HasValues_TimeValue_Test.java +++ b/src/test/java/org/assertj/db/api/assertions/AssertOnColumnEquality_HasValues_TimeValue_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.api.assertions; diff --git a/src/test/java/org/assertj/db/api/assertions/AssertOnColumnEquality_HasValues_UUID_Test.java b/src/test/java/org/assertj/db/api/assertions/AssertOnColumnEquality_HasValues_UUID_Test.java index 46215e9f..7a505a54 100644 --- a/src/test/java/org/assertj/db/api/assertions/AssertOnColumnEquality_HasValues_UUID_Test.java +++ b/src/test/java/org/assertj/db/api/assertions/AssertOnColumnEquality_HasValues_UUID_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.api.assertions; diff --git a/src/test/java/org/assertj/db/api/assertions/AssertOnColumnName_HasColumnName_Test.java b/src/test/java/org/assertj/db/api/assertions/AssertOnColumnName_HasColumnName_Test.java index 32e438ed..13f3b15a 100644 --- a/src/test/java/org/assertj/db/api/assertions/AssertOnColumnName_HasColumnName_Test.java +++ b/src/test/java/org/assertj/db/api/assertions/AssertOnColumnName_HasColumnName_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.api.assertions; diff --git a/src/test/java/org/assertj/db/api/assertions/AssertOnColumnNullity_HasOnlyNotNullValues_Test.java b/src/test/java/org/assertj/db/api/assertions/AssertOnColumnNullity_HasOnlyNotNullValues_Test.java index 94888851..0af063d2 100644 --- a/src/test/java/org/assertj/db/api/assertions/AssertOnColumnNullity_HasOnlyNotNullValues_Test.java +++ b/src/test/java/org/assertj/db/api/assertions/AssertOnColumnNullity_HasOnlyNotNullValues_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.api.assertions; diff --git a/src/test/java/org/assertj/db/api/assertions/AssertOnColumnNullity_HasOnlyNullValues_Test.java b/src/test/java/org/assertj/db/api/assertions/AssertOnColumnNullity_HasOnlyNullValues_Test.java index 900befd2..91f69c1c 100644 --- a/src/test/java/org/assertj/db/api/assertions/AssertOnColumnNullity_HasOnlyNullValues_Test.java +++ b/src/test/java/org/assertj/db/api/assertions/AssertOnColumnNullity_HasOnlyNullValues_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.api.assertions; diff --git a/src/test/java/org/assertj/db/api/assertions/AssertOnColumnOfChangeEquality_HasValues_One_Boolean_Test.java b/src/test/java/org/assertj/db/api/assertions/AssertOnColumnOfChangeEquality_HasValues_One_Boolean_Test.java index 8eb351f4..be1f39c2 100644 --- a/src/test/java/org/assertj/db/api/assertions/AssertOnColumnOfChangeEquality_HasValues_One_Boolean_Test.java +++ b/src/test/java/org/assertj/db/api/assertions/AssertOnColumnOfChangeEquality_HasValues_One_Boolean_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.api.assertions; diff --git a/src/test/java/org/assertj/db/api/assertions/AssertOnColumnOfChangeEquality_HasValues_One_Bytes_Test.java b/src/test/java/org/assertj/db/api/assertions/AssertOnColumnOfChangeEquality_HasValues_One_Bytes_Test.java index cdb2ac35..8e863ec5 100644 --- a/src/test/java/org/assertj/db/api/assertions/AssertOnColumnOfChangeEquality_HasValues_One_Bytes_Test.java +++ b/src/test/java/org/assertj/db/api/assertions/AssertOnColumnOfChangeEquality_HasValues_One_Bytes_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.api.assertions; diff --git a/src/test/java/org/assertj/db/api/assertions/AssertOnColumnOfChangeEquality_HasValues_One_DateTimeValue_Test.java b/src/test/java/org/assertj/db/api/assertions/AssertOnColumnOfChangeEquality_HasValues_One_DateTimeValue_Test.java index 8ff11436..063aa78c 100644 --- a/src/test/java/org/assertj/db/api/assertions/AssertOnColumnOfChangeEquality_HasValues_One_DateTimeValue_Test.java +++ b/src/test/java/org/assertj/db/api/assertions/AssertOnColumnOfChangeEquality_HasValues_One_DateTimeValue_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.api.assertions; diff --git a/src/test/java/org/assertj/db/api/assertions/AssertOnColumnOfChangeEquality_HasValues_One_DateValue_Test.java b/src/test/java/org/assertj/db/api/assertions/AssertOnColumnOfChangeEquality_HasValues_One_DateValue_Test.java index 82f0500f..db66baa6 100644 --- a/src/test/java/org/assertj/db/api/assertions/AssertOnColumnOfChangeEquality_HasValues_One_DateValue_Test.java +++ b/src/test/java/org/assertj/db/api/assertions/AssertOnColumnOfChangeEquality_HasValues_One_DateValue_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.api.assertions; diff --git a/src/test/java/org/assertj/db/api/assertions/AssertOnColumnOfChangeEquality_HasValues_One_Number_Test.java b/src/test/java/org/assertj/db/api/assertions/AssertOnColumnOfChangeEquality_HasValues_One_Number_Test.java index 212e6f6e..92908461 100644 --- a/src/test/java/org/assertj/db/api/assertions/AssertOnColumnOfChangeEquality_HasValues_One_Number_Test.java +++ b/src/test/java/org/assertj/db/api/assertions/AssertOnColumnOfChangeEquality_HasValues_One_Number_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.api.assertions; diff --git a/src/test/java/org/assertj/db/api/assertions/AssertOnColumnOfChangeEquality_HasValues_One_String_Test.java b/src/test/java/org/assertj/db/api/assertions/AssertOnColumnOfChangeEquality_HasValues_One_String_Test.java index 017874cd..cd42f4a3 100644 --- a/src/test/java/org/assertj/db/api/assertions/AssertOnColumnOfChangeEquality_HasValues_One_String_Test.java +++ b/src/test/java/org/assertj/db/api/assertions/AssertOnColumnOfChangeEquality_HasValues_One_String_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.api.assertions; diff --git a/src/test/java/org/assertj/db/api/assertions/AssertOnColumnOfChangeEquality_HasValues_One_TimeValue_Test.java b/src/test/java/org/assertj/db/api/assertions/AssertOnColumnOfChangeEquality_HasValues_One_TimeValue_Test.java index 9bc61e79..108ff4c8 100644 --- a/src/test/java/org/assertj/db/api/assertions/AssertOnColumnOfChangeEquality_HasValues_One_TimeValue_Test.java +++ b/src/test/java/org/assertj/db/api/assertions/AssertOnColumnOfChangeEquality_HasValues_One_TimeValue_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.api.assertions; diff --git a/src/test/java/org/assertj/db/api/assertions/AssertOnColumnOfChangeEquality_HasValues_One_UUID_Test.java b/src/test/java/org/assertj/db/api/assertions/AssertOnColumnOfChangeEquality_HasValues_One_UUID_Test.java index 787f3190..09144bdf 100644 --- a/src/test/java/org/assertj/db/api/assertions/AssertOnColumnOfChangeEquality_HasValues_One_UUID_Test.java +++ b/src/test/java/org/assertj/db/api/assertions/AssertOnColumnOfChangeEquality_HasValues_One_UUID_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.api.assertions; diff --git a/src/test/java/org/assertj/db/api/assertions/AssertOnColumnOfChangeEquality_HasValues_Two_Boolean_Test.java b/src/test/java/org/assertj/db/api/assertions/AssertOnColumnOfChangeEquality_HasValues_Two_Boolean_Test.java index 28672842..a6b6cfd0 100644 --- a/src/test/java/org/assertj/db/api/assertions/AssertOnColumnOfChangeEquality_HasValues_Two_Boolean_Test.java +++ b/src/test/java/org/assertj/db/api/assertions/AssertOnColumnOfChangeEquality_HasValues_Two_Boolean_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.api.assertions; diff --git a/src/test/java/org/assertj/db/api/assertions/AssertOnColumnOfChangeEquality_HasValues_Two_Bytes_Test.java b/src/test/java/org/assertj/db/api/assertions/AssertOnColumnOfChangeEquality_HasValues_Two_Bytes_Test.java index cfd6f153..992f9638 100644 --- a/src/test/java/org/assertj/db/api/assertions/AssertOnColumnOfChangeEquality_HasValues_Two_Bytes_Test.java +++ b/src/test/java/org/assertj/db/api/assertions/AssertOnColumnOfChangeEquality_HasValues_Two_Bytes_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.api.assertions; diff --git a/src/test/java/org/assertj/db/api/assertions/AssertOnColumnOfChangeEquality_HasValues_Two_Character_Test.java b/src/test/java/org/assertj/db/api/assertions/AssertOnColumnOfChangeEquality_HasValues_Two_Character_Test.java index 630f21f4..0e1258c3 100644 --- a/src/test/java/org/assertj/db/api/assertions/AssertOnColumnOfChangeEquality_HasValues_Two_Character_Test.java +++ b/src/test/java/org/assertj/db/api/assertions/AssertOnColumnOfChangeEquality_HasValues_Two_Character_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.api.assertions; diff --git a/src/test/java/org/assertj/db/api/assertions/AssertOnColumnOfChangeEquality_HasValues_Two_DateTimeValue_Test.java b/src/test/java/org/assertj/db/api/assertions/AssertOnColumnOfChangeEquality_HasValues_Two_DateTimeValue_Test.java index edea40d6..5cf05a14 100644 --- a/src/test/java/org/assertj/db/api/assertions/AssertOnColumnOfChangeEquality_HasValues_Two_DateTimeValue_Test.java +++ b/src/test/java/org/assertj/db/api/assertions/AssertOnColumnOfChangeEquality_HasValues_Two_DateTimeValue_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.api.assertions; diff --git a/src/test/java/org/assertj/db/api/assertions/AssertOnColumnOfChangeEquality_HasValues_Two_DateValue_Test.java b/src/test/java/org/assertj/db/api/assertions/AssertOnColumnOfChangeEquality_HasValues_Two_DateValue_Test.java index 44e070b1..0dbda35c 100644 --- a/src/test/java/org/assertj/db/api/assertions/AssertOnColumnOfChangeEquality_HasValues_Two_DateValue_Test.java +++ b/src/test/java/org/assertj/db/api/assertions/AssertOnColumnOfChangeEquality_HasValues_Two_DateValue_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.api.assertions; diff --git a/src/test/java/org/assertj/db/api/assertions/AssertOnColumnOfChangeEquality_HasValues_Two_Number_Test.java b/src/test/java/org/assertj/db/api/assertions/AssertOnColumnOfChangeEquality_HasValues_Two_Number_Test.java index 387704b4..0b3b69d7 100644 --- a/src/test/java/org/assertj/db/api/assertions/AssertOnColumnOfChangeEquality_HasValues_Two_Number_Test.java +++ b/src/test/java/org/assertj/db/api/assertions/AssertOnColumnOfChangeEquality_HasValues_Two_Number_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.api.assertions; diff --git a/src/test/java/org/assertj/db/api/assertions/AssertOnColumnOfChangeEquality_HasValues_Two_String_Test.java b/src/test/java/org/assertj/db/api/assertions/AssertOnColumnOfChangeEquality_HasValues_Two_String_Test.java index b1b262a6..44b636bb 100644 --- a/src/test/java/org/assertj/db/api/assertions/AssertOnColumnOfChangeEquality_HasValues_Two_String_Test.java +++ b/src/test/java/org/assertj/db/api/assertions/AssertOnColumnOfChangeEquality_HasValues_Two_String_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.api.assertions; diff --git a/src/test/java/org/assertj/db/api/assertions/AssertOnColumnOfChangeEquality_HasValues_Two_TimeValue_Test.java b/src/test/java/org/assertj/db/api/assertions/AssertOnColumnOfChangeEquality_HasValues_Two_TimeValue_Test.java index ab50e87f..e9ad1317 100644 --- a/src/test/java/org/assertj/db/api/assertions/AssertOnColumnOfChangeEquality_HasValues_Two_TimeValue_Test.java +++ b/src/test/java/org/assertj/db/api/assertions/AssertOnColumnOfChangeEquality_HasValues_Two_TimeValue_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.api.assertions; diff --git a/src/test/java/org/assertj/db/api/assertions/AssertOnColumnOfChangeEquality_HasValues_Two_UUID_Test.java b/src/test/java/org/assertj/db/api/assertions/AssertOnColumnOfChangeEquality_HasValues_Two_UUID_Test.java index 28cee24e..26d7ca9b 100644 --- a/src/test/java/org/assertj/db/api/assertions/AssertOnColumnOfChangeEquality_HasValues_Two_UUID_Test.java +++ b/src/test/java/org/assertj/db/api/assertions/AssertOnColumnOfChangeEquality_HasValues_Two_UUID_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.api.assertions; diff --git a/src/test/java/org/assertj/db/api/assertions/AssertOnColumnType_IsBoolean_Test.java b/src/test/java/org/assertj/db/api/assertions/AssertOnColumnType_IsBoolean_Test.java index ccf5ed30..66ecaeee 100644 --- a/src/test/java/org/assertj/db/api/assertions/AssertOnColumnType_IsBoolean_Test.java +++ b/src/test/java/org/assertj/db/api/assertions/AssertOnColumnType_IsBoolean_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.api.assertions; diff --git a/src/test/java/org/assertj/db/api/assertions/AssertOnColumnType_IsBytes_Test.java b/src/test/java/org/assertj/db/api/assertions/AssertOnColumnType_IsBytes_Test.java index db8e2892..291b7d6a 100644 --- a/src/test/java/org/assertj/db/api/assertions/AssertOnColumnType_IsBytes_Test.java +++ b/src/test/java/org/assertj/db/api/assertions/AssertOnColumnType_IsBytes_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.api.assertions; diff --git a/src/test/java/org/assertj/db/api/assertions/AssertOnColumnType_IsDateTime_Test.java b/src/test/java/org/assertj/db/api/assertions/AssertOnColumnType_IsDateTime_Test.java index 9bcd4e11..4483f948 100644 --- a/src/test/java/org/assertj/db/api/assertions/AssertOnColumnType_IsDateTime_Test.java +++ b/src/test/java/org/assertj/db/api/assertions/AssertOnColumnType_IsDateTime_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.api.assertions; diff --git a/src/test/java/org/assertj/db/api/assertions/AssertOnColumnType_IsDate_Test.java b/src/test/java/org/assertj/db/api/assertions/AssertOnColumnType_IsDate_Test.java index 6b802b8f..6dae5a11 100644 --- a/src/test/java/org/assertj/db/api/assertions/AssertOnColumnType_IsDate_Test.java +++ b/src/test/java/org/assertj/db/api/assertions/AssertOnColumnType_IsDate_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.api.assertions; diff --git a/src/test/java/org/assertj/db/api/assertions/AssertOnColumnType_IsNumber_Test.java b/src/test/java/org/assertj/db/api/assertions/AssertOnColumnType_IsNumber_Test.java index 1be7a807..6b406dff 100644 --- a/src/test/java/org/assertj/db/api/assertions/AssertOnColumnType_IsNumber_Test.java +++ b/src/test/java/org/assertj/db/api/assertions/AssertOnColumnType_IsNumber_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.api.assertions; diff --git a/src/test/java/org/assertj/db/api/assertions/AssertOnColumnType_IsOfAnyTypeIn_Test.java b/src/test/java/org/assertj/db/api/assertions/AssertOnColumnType_IsOfAnyTypeIn_Test.java index 4345b374..685ce3b4 100644 --- a/src/test/java/org/assertj/db/api/assertions/AssertOnColumnType_IsOfAnyTypeIn_Test.java +++ b/src/test/java/org/assertj/db/api/assertions/AssertOnColumnType_IsOfAnyTypeIn_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.api.assertions; diff --git a/src/test/java/org/assertj/db/api/assertions/AssertOnColumnType_IsOfType_Test.java b/src/test/java/org/assertj/db/api/assertions/AssertOnColumnType_IsOfType_Test.java index a8662160..d3ed6a65 100644 --- a/src/test/java/org/assertj/db/api/assertions/AssertOnColumnType_IsOfType_Test.java +++ b/src/test/java/org/assertj/db/api/assertions/AssertOnColumnType_IsOfType_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.api.assertions; diff --git a/src/test/java/org/assertj/db/api/assertions/AssertOnColumnType_IsText_Test.java b/src/test/java/org/assertj/db/api/assertions/AssertOnColumnType_IsText_Test.java index c04ef372..6374cc88 100644 --- a/src/test/java/org/assertj/db/api/assertions/AssertOnColumnType_IsText_Test.java +++ b/src/test/java/org/assertj/db/api/assertions/AssertOnColumnType_IsText_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.api.assertions; diff --git a/src/test/java/org/assertj/db/api/assertions/AssertOnColumnType_IsTime_Test.java b/src/test/java/org/assertj/db/api/assertions/AssertOnColumnType_IsTime_Test.java index 3f2800ce..9568ad45 100644 --- a/src/test/java/org/assertj/db/api/assertions/AssertOnColumnType_IsTime_Test.java +++ b/src/test/java/org/assertj/db/api/assertions/AssertOnColumnType_IsTime_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.api.assertions; diff --git a/src/test/java/org/assertj/db/api/assertions/AssertOnColumnType_IsUUID_Test.java b/src/test/java/org/assertj/db/api/assertions/AssertOnColumnType_IsUUID_Test.java index 699830ca..49d80b3f 100644 --- a/src/test/java/org/assertj/db/api/assertions/AssertOnColumnType_IsUUID_Test.java +++ b/src/test/java/org/assertj/db/api/assertions/AssertOnColumnType_IsUUID_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.api.assertions; diff --git a/src/test/java/org/assertj/db/api/assertions/AssertOnDataType_IsOnDataType_Test.java b/src/test/java/org/assertj/db/api/assertions/AssertOnDataType_IsOnDataType_Test.java index a48aba82..de6c3a5f 100644 --- a/src/test/java/org/assertj/db/api/assertions/AssertOnDataType_IsOnDataType_Test.java +++ b/src/test/java/org/assertj/db/api/assertions/AssertOnDataType_IsOnDataType_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.api.assertions; diff --git a/src/test/java/org/assertj/db/api/assertions/AssertOnDataType_IsOnRequest_Test.java b/src/test/java/org/assertj/db/api/assertions/AssertOnDataType_IsOnRequest_Test.java index 71224edd..42041022 100644 --- a/src/test/java/org/assertj/db/api/assertions/AssertOnDataType_IsOnRequest_Test.java +++ b/src/test/java/org/assertj/db/api/assertions/AssertOnDataType_IsOnRequest_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.api.assertions; diff --git a/src/test/java/org/assertj/db/api/assertions/AssertOnDataType_IsOnTable_Name_Test.java b/src/test/java/org/assertj/db/api/assertions/AssertOnDataType_IsOnTable_Name_Test.java index 23a93cc3..afbd83a8 100644 --- a/src/test/java/org/assertj/db/api/assertions/AssertOnDataType_IsOnTable_Name_Test.java +++ b/src/test/java/org/assertj/db/api/assertions/AssertOnDataType_IsOnTable_Name_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.api.assertions; diff --git a/src/test/java/org/assertj/db/api/assertions/AssertOnDataType_IsOnTable_Test.java b/src/test/java/org/assertj/db/api/assertions/AssertOnDataType_IsOnTable_Test.java index 50a60f8b..97e42323 100644 --- a/src/test/java/org/assertj/db/api/assertions/AssertOnDataType_IsOnTable_Test.java +++ b/src/test/java/org/assertj/db/api/assertions/AssertOnDataType_IsOnTable_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.api.assertions; diff --git a/src/test/java/org/assertj/db/api/assertions/AssertOnExistence_DoesNotExist_Test.java b/src/test/java/org/assertj/db/api/assertions/AssertOnExistence_DoesNotExist_Test.java index efc002a0..e738edfe 100644 --- a/src/test/java/org/assertj/db/api/assertions/AssertOnExistence_DoesNotExist_Test.java +++ b/src/test/java/org/assertj/db/api/assertions/AssertOnExistence_DoesNotExist_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.api.assertions; diff --git a/src/test/java/org/assertj/db/api/assertions/AssertOnExistence_Exists_Test.java b/src/test/java/org/assertj/db/api/assertions/AssertOnExistence_Exists_Test.java index 54c837b2..02e221f7 100644 --- a/src/test/java/org/assertj/db/api/assertions/AssertOnExistence_Exists_Test.java +++ b/src/test/java/org/assertj/db/api/assertions/AssertOnExistence_Exists_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.api.assertions; diff --git a/src/test/java/org/assertj/db/api/assertions/AssertOnModifiedColumn_IsModified_Test.java b/src/test/java/org/assertj/db/api/assertions/AssertOnModifiedColumn_IsModified_Test.java index 8835954d..17ca0401 100644 --- a/src/test/java/org/assertj/db/api/assertions/AssertOnModifiedColumn_IsModified_Test.java +++ b/src/test/java/org/assertj/db/api/assertions/AssertOnModifiedColumn_IsModified_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.api.assertions; diff --git a/src/test/java/org/assertj/db/api/assertions/AssertOnModifiedColumn_IsNotModified_Test.java b/src/test/java/org/assertj/db/api/assertions/AssertOnModifiedColumn_IsNotModified_Test.java index 84c38d07..8f8728db 100644 --- a/src/test/java/org/assertj/db/api/assertions/AssertOnModifiedColumn_IsNotModified_Test.java +++ b/src/test/java/org/assertj/db/api/assertions/AssertOnModifiedColumn_IsNotModified_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.api.assertions; diff --git a/src/test/java/org/assertj/db/api/assertions/AssertOnModifiedColumns_HasModifiedColumns_Integer_Test.java b/src/test/java/org/assertj/db/api/assertions/AssertOnModifiedColumns_HasModifiedColumns_Integer_Test.java index c1f8a43d..82479480 100644 --- a/src/test/java/org/assertj/db/api/assertions/AssertOnModifiedColumns_HasModifiedColumns_Integer_Test.java +++ b/src/test/java/org/assertj/db/api/assertions/AssertOnModifiedColumns_HasModifiedColumns_Integer_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.api.assertions; diff --git a/src/test/java/org/assertj/db/api/assertions/AssertOnModifiedColumns_HasModifiedColumns_String_Test.java b/src/test/java/org/assertj/db/api/assertions/AssertOnModifiedColumns_HasModifiedColumns_String_Test.java index 2a7f737a..c4afe19a 100644 --- a/src/test/java/org/assertj/db/api/assertions/AssertOnModifiedColumns_HasModifiedColumns_String_Test.java +++ b/src/test/java/org/assertj/db/api/assertions/AssertOnModifiedColumns_HasModifiedColumns_String_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.api.assertions; diff --git a/src/test/java/org/assertj/db/api/assertions/AssertOnModifiedColumns_HasNumberOfModifiedColumnsGreaterThanOrEqualTo_Test.java b/src/test/java/org/assertj/db/api/assertions/AssertOnModifiedColumns_HasNumberOfModifiedColumnsGreaterThanOrEqualTo_Test.java index b3f2fdfc..0108ceec 100644 --- a/src/test/java/org/assertj/db/api/assertions/AssertOnModifiedColumns_HasNumberOfModifiedColumnsGreaterThanOrEqualTo_Test.java +++ b/src/test/java/org/assertj/db/api/assertions/AssertOnModifiedColumns_HasNumberOfModifiedColumnsGreaterThanOrEqualTo_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.api.assertions; diff --git a/src/test/java/org/assertj/db/api/assertions/AssertOnModifiedColumns_HasNumberOfModifiedColumnsGreaterThan_Test.java b/src/test/java/org/assertj/db/api/assertions/AssertOnModifiedColumns_HasNumberOfModifiedColumnsGreaterThan_Test.java index f62063ab..9362b836 100644 --- a/src/test/java/org/assertj/db/api/assertions/AssertOnModifiedColumns_HasNumberOfModifiedColumnsGreaterThan_Test.java +++ b/src/test/java/org/assertj/db/api/assertions/AssertOnModifiedColumns_HasNumberOfModifiedColumnsGreaterThan_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.api.assertions; diff --git a/src/test/java/org/assertj/db/api/assertions/AssertOnModifiedColumns_HasNumberOfModifiedColumnsLessThanOrEqualTo_Test.java b/src/test/java/org/assertj/db/api/assertions/AssertOnModifiedColumns_HasNumberOfModifiedColumnsLessThanOrEqualTo_Test.java index 6af600c2..4c2325fd 100644 --- a/src/test/java/org/assertj/db/api/assertions/AssertOnModifiedColumns_HasNumberOfModifiedColumnsLessThanOrEqualTo_Test.java +++ b/src/test/java/org/assertj/db/api/assertions/AssertOnModifiedColumns_HasNumberOfModifiedColumnsLessThanOrEqualTo_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.api.assertions; diff --git a/src/test/java/org/assertj/db/api/assertions/AssertOnModifiedColumns_HasNumberOfModifiedColumnsLessThan_Test.java b/src/test/java/org/assertj/db/api/assertions/AssertOnModifiedColumns_HasNumberOfModifiedColumnsLessThan_Test.java index c240d9ca..d53f0993 100644 --- a/src/test/java/org/assertj/db/api/assertions/AssertOnModifiedColumns_HasNumberOfModifiedColumnsLessThan_Test.java +++ b/src/test/java/org/assertj/db/api/assertions/AssertOnModifiedColumns_HasNumberOfModifiedColumnsLessThan_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.api.assertions; diff --git a/src/test/java/org/assertj/db/api/assertions/AssertOnModifiedColumns_HasNumberOfModifiedColumns_Test.java b/src/test/java/org/assertj/db/api/assertions/AssertOnModifiedColumns_HasNumberOfModifiedColumns_Test.java index a693d8d1..f7869945 100644 --- a/src/test/java/org/assertj/db/api/assertions/AssertOnModifiedColumns_HasNumberOfModifiedColumns_Test.java +++ b/src/test/java/org/assertj/db/api/assertions/AssertOnModifiedColumns_HasNumberOfModifiedColumns_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.api.assertions; diff --git a/src/test/java/org/assertj/db/api/assertions/AssertOnNumberOfChanges_HasNumberOfChangesGreaterThanOrEqualTo_Test.java b/src/test/java/org/assertj/db/api/assertions/AssertOnNumberOfChanges_HasNumberOfChangesGreaterThanOrEqualTo_Test.java index c7c0e01b..57025968 100644 --- a/src/test/java/org/assertj/db/api/assertions/AssertOnNumberOfChanges_HasNumberOfChangesGreaterThanOrEqualTo_Test.java +++ b/src/test/java/org/assertj/db/api/assertions/AssertOnNumberOfChanges_HasNumberOfChangesGreaterThanOrEqualTo_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.api.assertions; diff --git a/src/test/java/org/assertj/db/api/assertions/AssertOnNumberOfChanges_HasNumberOfChangesGreaterThan_Test.java b/src/test/java/org/assertj/db/api/assertions/AssertOnNumberOfChanges_HasNumberOfChangesGreaterThan_Test.java index 33096cb1..2bf1f3d0 100644 --- a/src/test/java/org/assertj/db/api/assertions/AssertOnNumberOfChanges_HasNumberOfChangesGreaterThan_Test.java +++ b/src/test/java/org/assertj/db/api/assertions/AssertOnNumberOfChanges_HasNumberOfChangesGreaterThan_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.api.assertions; diff --git a/src/test/java/org/assertj/db/api/assertions/AssertOnNumberOfChanges_HasNumberOfChangesLessThanOrEqualTo_Test.java b/src/test/java/org/assertj/db/api/assertions/AssertOnNumberOfChanges_HasNumberOfChangesLessThanOrEqualTo_Test.java index c14b2599..de9eef36 100644 --- a/src/test/java/org/assertj/db/api/assertions/AssertOnNumberOfChanges_HasNumberOfChangesLessThanOrEqualTo_Test.java +++ b/src/test/java/org/assertj/db/api/assertions/AssertOnNumberOfChanges_HasNumberOfChangesLessThanOrEqualTo_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.api.assertions; diff --git a/src/test/java/org/assertj/db/api/assertions/AssertOnNumberOfChanges_HasNumberOfChangesLessThan_Test.java b/src/test/java/org/assertj/db/api/assertions/AssertOnNumberOfChanges_HasNumberOfChangesLessThan_Test.java index a9463793..29145856 100644 --- a/src/test/java/org/assertj/db/api/assertions/AssertOnNumberOfChanges_HasNumberOfChangesLessThan_Test.java +++ b/src/test/java/org/assertj/db/api/assertions/AssertOnNumberOfChanges_HasNumberOfChangesLessThan_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.api.assertions; diff --git a/src/test/java/org/assertj/db/api/assertions/AssertOnNumberOfChanges_HasNumberOfChanges_Test.java b/src/test/java/org/assertj/db/api/assertions/AssertOnNumberOfChanges_HasNumberOfChanges_Test.java index d2a7e424..d049cc74 100644 --- a/src/test/java/org/assertj/db/api/assertions/AssertOnNumberOfChanges_HasNumberOfChanges_Test.java +++ b/src/test/java/org/assertj/db/api/assertions/AssertOnNumberOfChanges_HasNumberOfChanges_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.api.assertions; diff --git a/src/test/java/org/assertj/db/api/assertions/AssertOnNumberOfColumns_HasNumberOfColumnsGreaterThanOrEqualTo_Test.java b/src/test/java/org/assertj/db/api/assertions/AssertOnNumberOfColumns_HasNumberOfColumnsGreaterThanOrEqualTo_Test.java index acac1544..0dfebbe7 100644 --- a/src/test/java/org/assertj/db/api/assertions/AssertOnNumberOfColumns_HasNumberOfColumnsGreaterThanOrEqualTo_Test.java +++ b/src/test/java/org/assertj/db/api/assertions/AssertOnNumberOfColumns_HasNumberOfColumnsGreaterThanOrEqualTo_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.api.assertions; diff --git a/src/test/java/org/assertj/db/api/assertions/AssertOnNumberOfColumns_HasNumberOfColumnsGreaterThan_Test.java b/src/test/java/org/assertj/db/api/assertions/AssertOnNumberOfColumns_HasNumberOfColumnsGreaterThan_Test.java index 7968605a..24f752a7 100644 --- a/src/test/java/org/assertj/db/api/assertions/AssertOnNumberOfColumns_HasNumberOfColumnsGreaterThan_Test.java +++ b/src/test/java/org/assertj/db/api/assertions/AssertOnNumberOfColumns_HasNumberOfColumnsGreaterThan_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.api.assertions; diff --git a/src/test/java/org/assertj/db/api/assertions/AssertOnNumberOfColumns_HasNumberOfColumnsLessThanOrEqualTo_Test.java b/src/test/java/org/assertj/db/api/assertions/AssertOnNumberOfColumns_HasNumberOfColumnsLessThanOrEqualTo_Test.java index e768bead..1178a8af 100644 --- a/src/test/java/org/assertj/db/api/assertions/AssertOnNumberOfColumns_HasNumberOfColumnsLessThanOrEqualTo_Test.java +++ b/src/test/java/org/assertj/db/api/assertions/AssertOnNumberOfColumns_HasNumberOfColumnsLessThanOrEqualTo_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.api.assertions; diff --git a/src/test/java/org/assertj/db/api/assertions/AssertOnNumberOfColumns_HasNumberOfColumnsLessThan_Test.java b/src/test/java/org/assertj/db/api/assertions/AssertOnNumberOfColumns_HasNumberOfColumnsLessThan_Test.java index 99da5ab3..43b01024 100644 --- a/src/test/java/org/assertj/db/api/assertions/AssertOnNumberOfColumns_HasNumberOfColumnsLessThan_Test.java +++ b/src/test/java/org/assertj/db/api/assertions/AssertOnNumberOfColumns_HasNumberOfColumnsLessThan_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.api.assertions; diff --git a/src/test/java/org/assertj/db/api/assertions/AssertOnNumberOfColumns_HasNumberOfColumns_Test.java b/src/test/java/org/assertj/db/api/assertions/AssertOnNumberOfColumns_HasNumberOfColumns_Test.java index 7960a751..5edf0bc6 100644 --- a/src/test/java/org/assertj/db/api/assertions/AssertOnNumberOfColumns_HasNumberOfColumns_Test.java +++ b/src/test/java/org/assertj/db/api/assertions/AssertOnNumberOfColumns_HasNumberOfColumns_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.api.assertions; diff --git a/src/test/java/org/assertj/db/api/assertions/AssertOnNumberOfRows_HasNumberOfRowsGreaterThanOrEqualTo_Test.java b/src/test/java/org/assertj/db/api/assertions/AssertOnNumberOfRows_HasNumberOfRowsGreaterThanOrEqualTo_Test.java index c73edda9..bfd97c94 100644 --- a/src/test/java/org/assertj/db/api/assertions/AssertOnNumberOfRows_HasNumberOfRowsGreaterThanOrEqualTo_Test.java +++ b/src/test/java/org/assertj/db/api/assertions/AssertOnNumberOfRows_HasNumberOfRowsGreaterThanOrEqualTo_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.api.assertions; diff --git a/src/test/java/org/assertj/db/api/assertions/AssertOnNumberOfRows_HasNumberOfRowsGreaterThan_Test.java b/src/test/java/org/assertj/db/api/assertions/AssertOnNumberOfRows_HasNumberOfRowsGreaterThan_Test.java index 66ce06b4..2ffe6e72 100644 --- a/src/test/java/org/assertj/db/api/assertions/AssertOnNumberOfRows_HasNumberOfRowsGreaterThan_Test.java +++ b/src/test/java/org/assertj/db/api/assertions/AssertOnNumberOfRows_HasNumberOfRowsGreaterThan_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.api.assertions; diff --git a/src/test/java/org/assertj/db/api/assertions/AssertOnNumberOfRows_HasNumberOfRowsLessThanOrEqualTo_Test.java b/src/test/java/org/assertj/db/api/assertions/AssertOnNumberOfRows_HasNumberOfRowsLessThanOrEqualTo_Test.java index a6610b7e..4ac73057 100644 --- a/src/test/java/org/assertj/db/api/assertions/AssertOnNumberOfRows_HasNumberOfRowsLessThanOrEqualTo_Test.java +++ b/src/test/java/org/assertj/db/api/assertions/AssertOnNumberOfRows_HasNumberOfRowsLessThanOrEqualTo_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.api.assertions; diff --git a/src/test/java/org/assertj/db/api/assertions/AssertOnNumberOfRows_HasNumberOfRowsLessThan_Test.java b/src/test/java/org/assertj/db/api/assertions/AssertOnNumberOfRows_HasNumberOfRowsLessThan_Test.java index 3aa2e15a..ec5457af 100644 --- a/src/test/java/org/assertj/db/api/assertions/AssertOnNumberOfRows_HasNumberOfRowsLessThan_Test.java +++ b/src/test/java/org/assertj/db/api/assertions/AssertOnNumberOfRows_HasNumberOfRowsLessThan_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.api.assertions; diff --git a/src/test/java/org/assertj/db/api/assertions/AssertOnNumberOfRows_HasNumberOfRows_Test.java b/src/test/java/org/assertj/db/api/assertions/AssertOnNumberOfRows_HasNumberOfRows_Test.java index a0467dd9..05bb9a91 100644 --- a/src/test/java/org/assertj/db/api/assertions/AssertOnNumberOfRows_HasNumberOfRows_Test.java +++ b/src/test/java/org/assertj/db/api/assertions/AssertOnNumberOfRows_HasNumberOfRows_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.api.assertions; diff --git a/src/test/java/org/assertj/db/api/assertions/AssertOnNumberOfRows_IsEmpty_Test.java b/src/test/java/org/assertj/db/api/assertions/AssertOnNumberOfRows_IsEmpty_Test.java index 6b45a8fe..aaad6143 100644 --- a/src/test/java/org/assertj/db/api/assertions/AssertOnNumberOfRows_IsEmpty_Test.java +++ b/src/test/java/org/assertj/db/api/assertions/AssertOnNumberOfRows_IsEmpty_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.api.assertions; diff --git a/src/test/java/org/assertj/db/api/assertions/AssertOnPrimaryKey_HasPksNames_Test.java b/src/test/java/org/assertj/db/api/assertions/AssertOnPrimaryKey_HasPksNames_Test.java index 4cce34d6..4ad921be 100644 --- a/src/test/java/org/assertj/db/api/assertions/AssertOnPrimaryKey_HasPksNames_Test.java +++ b/src/test/java/org/assertj/db/api/assertions/AssertOnPrimaryKey_HasPksNames_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.api.assertions; diff --git a/src/test/java/org/assertj/db/api/assertions/AssertOnPrimaryKey_HasPksValues_Test.java b/src/test/java/org/assertj/db/api/assertions/AssertOnPrimaryKey_HasPksValues_Test.java index bada2442..619328ac 100644 --- a/src/test/java/org/assertj/db/api/assertions/AssertOnPrimaryKey_HasPksValues_Test.java +++ b/src/test/java/org/assertj/db/api/assertions/AssertOnPrimaryKey_HasPksValues_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.api.assertions; diff --git a/src/test/java/org/assertj/db/api/assertions/AssertOnRowCondition_HasValuesSatisfying_Test.java b/src/test/java/org/assertj/db/api/assertions/AssertOnRowCondition_HasValuesSatisfying_Test.java index 288c9166..107d6932 100644 --- a/src/test/java/org/assertj/db/api/assertions/AssertOnRowCondition_HasValuesSatisfying_Test.java +++ b/src/test/java/org/assertj/db/api/assertions/AssertOnRowCondition_HasValuesSatisfying_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.api.assertions; diff --git a/src/test/java/org/assertj/db/api/assertions/AssertOnRowEquality_HasValues_Test.java b/src/test/java/org/assertj/db/api/assertions/AssertOnRowEquality_HasValues_Test.java index a0c35ed7..0ad26d27 100644 --- a/src/test/java/org/assertj/db/api/assertions/AssertOnRowEquality_HasValues_Test.java +++ b/src/test/java/org/assertj/db/api/assertions/AssertOnRowEquality_HasValues_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.api.assertions; diff --git a/src/test/java/org/assertj/db/api/assertions/AssertOnRowNullity_HasOnlyNotNullValues_Test.java b/src/test/java/org/assertj/db/api/assertions/AssertOnRowNullity_HasOnlyNotNullValues_Test.java index 13c920a5..314ae499 100644 --- a/src/test/java/org/assertj/db/api/assertions/AssertOnRowNullity_HasOnlyNotNullValues_Test.java +++ b/src/test/java/org/assertj/db/api/assertions/AssertOnRowNullity_HasOnlyNotNullValues_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.api.assertions; diff --git a/src/test/java/org/assertj/db/api/assertions/AssertOnRowOfChangeExistence_DoesNotExist_Test.java b/src/test/java/org/assertj/db/api/assertions/AssertOnRowOfChangeExistence_DoesNotExist_Test.java index b27f0e7c..46ee1659 100644 --- a/src/test/java/org/assertj/db/api/assertions/AssertOnRowOfChangeExistence_DoesNotExist_Test.java +++ b/src/test/java/org/assertj/db/api/assertions/AssertOnRowOfChangeExistence_DoesNotExist_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.api.assertions; diff --git a/src/test/java/org/assertj/db/api/assertions/AssertOnRowOfChangeExistence_Exists_Test.java b/src/test/java/org/assertj/db/api/assertions/AssertOnRowOfChangeExistence_Exists_Test.java index 869aeab0..0ae56e99 100644 --- a/src/test/java/org/assertj/db/api/assertions/AssertOnRowOfChangeExistence_Exists_Test.java +++ b/src/test/java/org/assertj/db/api/assertions/AssertOnRowOfChangeExistence_Exists_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.api.assertions; diff --git a/src/test/java/org/assertj/db/api/assertions/AssertOnValueChronology_IsAfterOrEqualTo_DateTimeValue_Test.java b/src/test/java/org/assertj/db/api/assertions/AssertOnValueChronology_IsAfterOrEqualTo_DateTimeValue_Test.java index a2f0df17..926bc826 100644 --- a/src/test/java/org/assertj/db/api/assertions/AssertOnValueChronology_IsAfterOrEqualTo_DateTimeValue_Test.java +++ b/src/test/java/org/assertj/db/api/assertions/AssertOnValueChronology_IsAfterOrEqualTo_DateTimeValue_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.api.assertions; diff --git a/src/test/java/org/assertj/db/api/assertions/AssertOnValueChronology_IsAfterOrEqualTo_DateValue_Test.java b/src/test/java/org/assertj/db/api/assertions/AssertOnValueChronology_IsAfterOrEqualTo_DateValue_Test.java index ada50504..9e647a59 100644 --- a/src/test/java/org/assertj/db/api/assertions/AssertOnValueChronology_IsAfterOrEqualTo_DateValue_Test.java +++ b/src/test/java/org/assertj/db/api/assertions/AssertOnValueChronology_IsAfterOrEqualTo_DateValue_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.api.assertions; diff --git a/src/test/java/org/assertj/db/api/assertions/AssertOnValueChronology_IsAfterOrEqualTo_LocalDateTime_Test.java b/src/test/java/org/assertj/db/api/assertions/AssertOnValueChronology_IsAfterOrEqualTo_LocalDateTime_Test.java index 6c5bfe97..d61be28a 100644 --- a/src/test/java/org/assertj/db/api/assertions/AssertOnValueChronology_IsAfterOrEqualTo_LocalDateTime_Test.java +++ b/src/test/java/org/assertj/db/api/assertions/AssertOnValueChronology_IsAfterOrEqualTo_LocalDateTime_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.api.assertions; diff --git a/src/test/java/org/assertj/db/api/assertions/AssertOnValueChronology_IsAfterOrEqualTo_LocalDate_Test.java b/src/test/java/org/assertj/db/api/assertions/AssertOnValueChronology_IsAfterOrEqualTo_LocalDate_Test.java index 313de9f9..b367af2d 100644 --- a/src/test/java/org/assertj/db/api/assertions/AssertOnValueChronology_IsAfterOrEqualTo_LocalDate_Test.java +++ b/src/test/java/org/assertj/db/api/assertions/AssertOnValueChronology_IsAfterOrEqualTo_LocalDate_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.api.assertions; diff --git a/src/test/java/org/assertj/db/api/assertions/AssertOnValueChronology_IsAfterOrEqualTo_LocalTime_Test.java b/src/test/java/org/assertj/db/api/assertions/AssertOnValueChronology_IsAfterOrEqualTo_LocalTime_Test.java index a8c6063d..d929a486 100644 --- a/src/test/java/org/assertj/db/api/assertions/AssertOnValueChronology_IsAfterOrEqualTo_LocalTime_Test.java +++ b/src/test/java/org/assertj/db/api/assertions/AssertOnValueChronology_IsAfterOrEqualTo_LocalTime_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.api.assertions; diff --git a/src/test/java/org/assertj/db/api/assertions/AssertOnValueChronology_IsAfterOrEqualTo_String_Test.java b/src/test/java/org/assertj/db/api/assertions/AssertOnValueChronology_IsAfterOrEqualTo_String_Test.java index f6ab9d0f..67a0fb11 100644 --- a/src/test/java/org/assertj/db/api/assertions/AssertOnValueChronology_IsAfterOrEqualTo_String_Test.java +++ b/src/test/java/org/assertj/db/api/assertions/AssertOnValueChronology_IsAfterOrEqualTo_String_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.api.assertions; diff --git a/src/test/java/org/assertj/db/api/assertions/AssertOnValueChronology_IsAfterOrEqualTo_TimeValue_Test.java b/src/test/java/org/assertj/db/api/assertions/AssertOnValueChronology_IsAfterOrEqualTo_TimeValue_Test.java index a79c7513..7ca41011 100644 --- a/src/test/java/org/assertj/db/api/assertions/AssertOnValueChronology_IsAfterOrEqualTo_TimeValue_Test.java +++ b/src/test/java/org/assertj/db/api/assertions/AssertOnValueChronology_IsAfterOrEqualTo_TimeValue_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.api.assertions; diff --git a/src/test/java/org/assertj/db/api/assertions/AssertOnValueChronology_IsAfter_DateTimeValue_Test.java b/src/test/java/org/assertj/db/api/assertions/AssertOnValueChronology_IsAfter_DateTimeValue_Test.java index 0a3c87cb..d11b56ec 100644 --- a/src/test/java/org/assertj/db/api/assertions/AssertOnValueChronology_IsAfter_DateTimeValue_Test.java +++ b/src/test/java/org/assertj/db/api/assertions/AssertOnValueChronology_IsAfter_DateTimeValue_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.api.assertions; diff --git a/src/test/java/org/assertj/db/api/assertions/AssertOnValueChronology_IsAfter_DateValue_Test.java b/src/test/java/org/assertj/db/api/assertions/AssertOnValueChronology_IsAfter_DateValue_Test.java index 9a711688..fce90667 100644 --- a/src/test/java/org/assertj/db/api/assertions/AssertOnValueChronology_IsAfter_DateValue_Test.java +++ b/src/test/java/org/assertj/db/api/assertions/AssertOnValueChronology_IsAfter_DateValue_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.api.assertions; diff --git a/src/test/java/org/assertj/db/api/assertions/AssertOnValueChronology_IsAfter_LocalDateTime_Test.java b/src/test/java/org/assertj/db/api/assertions/AssertOnValueChronology_IsAfter_LocalDateTime_Test.java index 53d1f349..9c96f8b4 100644 --- a/src/test/java/org/assertj/db/api/assertions/AssertOnValueChronology_IsAfter_LocalDateTime_Test.java +++ b/src/test/java/org/assertj/db/api/assertions/AssertOnValueChronology_IsAfter_LocalDateTime_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.api.assertions; diff --git a/src/test/java/org/assertj/db/api/assertions/AssertOnValueChronology_IsAfter_LocalDate_Test.java b/src/test/java/org/assertj/db/api/assertions/AssertOnValueChronology_IsAfter_LocalDate_Test.java index b14c2e53..997e00a0 100644 --- a/src/test/java/org/assertj/db/api/assertions/AssertOnValueChronology_IsAfter_LocalDate_Test.java +++ b/src/test/java/org/assertj/db/api/assertions/AssertOnValueChronology_IsAfter_LocalDate_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.api.assertions; diff --git a/src/test/java/org/assertj/db/api/assertions/AssertOnValueChronology_IsAfter_LocalTime_Test.java b/src/test/java/org/assertj/db/api/assertions/AssertOnValueChronology_IsAfter_LocalTime_Test.java index 6e434713..c1595788 100644 --- a/src/test/java/org/assertj/db/api/assertions/AssertOnValueChronology_IsAfter_LocalTime_Test.java +++ b/src/test/java/org/assertj/db/api/assertions/AssertOnValueChronology_IsAfter_LocalTime_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.api.assertions; diff --git a/src/test/java/org/assertj/db/api/assertions/AssertOnValueChronology_IsAfter_String_Test.java b/src/test/java/org/assertj/db/api/assertions/AssertOnValueChronology_IsAfter_String_Test.java index d72baddc..391df019 100644 --- a/src/test/java/org/assertj/db/api/assertions/AssertOnValueChronology_IsAfter_String_Test.java +++ b/src/test/java/org/assertj/db/api/assertions/AssertOnValueChronology_IsAfter_String_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.api.assertions; diff --git a/src/test/java/org/assertj/db/api/assertions/AssertOnValueChronology_IsAfter_TimeValue_Test.java b/src/test/java/org/assertj/db/api/assertions/AssertOnValueChronology_IsAfter_TimeValue_Test.java index 953e2c3e..2269c657 100644 --- a/src/test/java/org/assertj/db/api/assertions/AssertOnValueChronology_IsAfter_TimeValue_Test.java +++ b/src/test/java/org/assertj/db/api/assertions/AssertOnValueChronology_IsAfter_TimeValue_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.api.assertions; diff --git a/src/test/java/org/assertj/db/api/assertions/AssertOnValueChronology_IsBeforeOrEqualTo_DateTimeValue_Test.java b/src/test/java/org/assertj/db/api/assertions/AssertOnValueChronology_IsBeforeOrEqualTo_DateTimeValue_Test.java index eb6fbfbd..2bbf43a0 100644 --- a/src/test/java/org/assertj/db/api/assertions/AssertOnValueChronology_IsBeforeOrEqualTo_DateTimeValue_Test.java +++ b/src/test/java/org/assertj/db/api/assertions/AssertOnValueChronology_IsBeforeOrEqualTo_DateTimeValue_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.api.assertions; diff --git a/src/test/java/org/assertj/db/api/assertions/AssertOnValueChronology_IsBeforeOrEqualTo_DateValue_Test.java b/src/test/java/org/assertj/db/api/assertions/AssertOnValueChronology_IsBeforeOrEqualTo_DateValue_Test.java index 806f3ada..78bdf3bc 100644 --- a/src/test/java/org/assertj/db/api/assertions/AssertOnValueChronology_IsBeforeOrEqualTo_DateValue_Test.java +++ b/src/test/java/org/assertj/db/api/assertions/AssertOnValueChronology_IsBeforeOrEqualTo_DateValue_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.api.assertions; diff --git a/src/test/java/org/assertj/db/api/assertions/AssertOnValueChronology_IsBeforeOrEqualTo_LocalDateTime_Test.java b/src/test/java/org/assertj/db/api/assertions/AssertOnValueChronology_IsBeforeOrEqualTo_LocalDateTime_Test.java index 6b5423aa..d7ef97a4 100644 --- a/src/test/java/org/assertj/db/api/assertions/AssertOnValueChronology_IsBeforeOrEqualTo_LocalDateTime_Test.java +++ b/src/test/java/org/assertj/db/api/assertions/AssertOnValueChronology_IsBeforeOrEqualTo_LocalDateTime_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.api.assertions; diff --git a/src/test/java/org/assertj/db/api/assertions/AssertOnValueChronology_IsBeforeOrEqualTo_LocalDate_Test.java b/src/test/java/org/assertj/db/api/assertions/AssertOnValueChronology_IsBeforeOrEqualTo_LocalDate_Test.java index 40330232..e1ac1159 100644 --- a/src/test/java/org/assertj/db/api/assertions/AssertOnValueChronology_IsBeforeOrEqualTo_LocalDate_Test.java +++ b/src/test/java/org/assertj/db/api/assertions/AssertOnValueChronology_IsBeforeOrEqualTo_LocalDate_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.api.assertions; diff --git a/src/test/java/org/assertj/db/api/assertions/AssertOnValueChronology_IsBeforeOrEqualTo_LocalTime_Test.java b/src/test/java/org/assertj/db/api/assertions/AssertOnValueChronology_IsBeforeOrEqualTo_LocalTime_Test.java index 2ca0df48..7b120ffc 100644 --- a/src/test/java/org/assertj/db/api/assertions/AssertOnValueChronology_IsBeforeOrEqualTo_LocalTime_Test.java +++ b/src/test/java/org/assertj/db/api/assertions/AssertOnValueChronology_IsBeforeOrEqualTo_LocalTime_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.api.assertions; diff --git a/src/test/java/org/assertj/db/api/assertions/AssertOnValueChronology_IsBeforeOrEqualTo_String_Test.java b/src/test/java/org/assertj/db/api/assertions/AssertOnValueChronology_IsBeforeOrEqualTo_String_Test.java index 190cc0c8..3f712fcd 100644 --- a/src/test/java/org/assertj/db/api/assertions/AssertOnValueChronology_IsBeforeOrEqualTo_String_Test.java +++ b/src/test/java/org/assertj/db/api/assertions/AssertOnValueChronology_IsBeforeOrEqualTo_String_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.api.assertions; diff --git a/src/test/java/org/assertj/db/api/assertions/AssertOnValueChronology_IsBeforeOrEqualTo_TimeValue_Test.java b/src/test/java/org/assertj/db/api/assertions/AssertOnValueChronology_IsBeforeOrEqualTo_TimeValue_Test.java index baa7476b..9298add3 100644 --- a/src/test/java/org/assertj/db/api/assertions/AssertOnValueChronology_IsBeforeOrEqualTo_TimeValue_Test.java +++ b/src/test/java/org/assertj/db/api/assertions/AssertOnValueChronology_IsBeforeOrEqualTo_TimeValue_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.api.assertions; diff --git a/src/test/java/org/assertj/db/api/assertions/AssertOnValueChronology_IsBefore_DateTimeValue_Test.java b/src/test/java/org/assertj/db/api/assertions/AssertOnValueChronology_IsBefore_DateTimeValue_Test.java index 4c174a85..a2ecef2a 100644 --- a/src/test/java/org/assertj/db/api/assertions/AssertOnValueChronology_IsBefore_DateTimeValue_Test.java +++ b/src/test/java/org/assertj/db/api/assertions/AssertOnValueChronology_IsBefore_DateTimeValue_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.api.assertions; diff --git a/src/test/java/org/assertj/db/api/assertions/AssertOnValueChronology_IsBefore_DateValue_Test.java b/src/test/java/org/assertj/db/api/assertions/AssertOnValueChronology_IsBefore_DateValue_Test.java index 70616737..bab7679c 100644 --- a/src/test/java/org/assertj/db/api/assertions/AssertOnValueChronology_IsBefore_DateValue_Test.java +++ b/src/test/java/org/assertj/db/api/assertions/AssertOnValueChronology_IsBefore_DateValue_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.api.assertions; diff --git a/src/test/java/org/assertj/db/api/assertions/AssertOnValueChronology_IsBefore_LocalDateTime_Test.java b/src/test/java/org/assertj/db/api/assertions/AssertOnValueChronology_IsBefore_LocalDateTime_Test.java index d59a97e2..0819e0e7 100644 --- a/src/test/java/org/assertj/db/api/assertions/AssertOnValueChronology_IsBefore_LocalDateTime_Test.java +++ b/src/test/java/org/assertj/db/api/assertions/AssertOnValueChronology_IsBefore_LocalDateTime_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.api.assertions; diff --git a/src/test/java/org/assertj/db/api/assertions/AssertOnValueChronology_IsBefore_LocalDate_Test.java b/src/test/java/org/assertj/db/api/assertions/AssertOnValueChronology_IsBefore_LocalDate_Test.java index 4623b434..32d55ca2 100644 --- a/src/test/java/org/assertj/db/api/assertions/AssertOnValueChronology_IsBefore_LocalDate_Test.java +++ b/src/test/java/org/assertj/db/api/assertions/AssertOnValueChronology_IsBefore_LocalDate_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.api.assertions; diff --git a/src/test/java/org/assertj/db/api/assertions/AssertOnValueChronology_IsBefore_LocalTime_Test.java b/src/test/java/org/assertj/db/api/assertions/AssertOnValueChronology_IsBefore_LocalTime_Test.java index f2214d2c..e9f2773b 100644 --- a/src/test/java/org/assertj/db/api/assertions/AssertOnValueChronology_IsBefore_LocalTime_Test.java +++ b/src/test/java/org/assertj/db/api/assertions/AssertOnValueChronology_IsBefore_LocalTime_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.api.assertions; diff --git a/src/test/java/org/assertj/db/api/assertions/AssertOnValueChronology_IsBefore_String_Test.java b/src/test/java/org/assertj/db/api/assertions/AssertOnValueChronology_IsBefore_String_Test.java index c18e7840..6b76d331 100644 --- a/src/test/java/org/assertj/db/api/assertions/AssertOnValueChronology_IsBefore_String_Test.java +++ b/src/test/java/org/assertj/db/api/assertions/AssertOnValueChronology_IsBefore_String_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.api.assertions; diff --git a/src/test/java/org/assertj/db/api/assertions/AssertOnValueChronology_IsBefore_TimeValue_Test.java b/src/test/java/org/assertj/db/api/assertions/AssertOnValueChronology_IsBefore_TimeValue_Test.java index f4b103b7..b68394e7 100644 --- a/src/test/java/org/assertj/db/api/assertions/AssertOnValueChronology_IsBefore_TimeValue_Test.java +++ b/src/test/java/org/assertj/db/api/assertions/AssertOnValueChronology_IsBefore_TimeValue_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.api.assertions; diff --git a/src/test/java/org/assertj/db/api/assertions/AssertOnValueClass_IsOfClass_Test.java b/src/test/java/org/assertj/db/api/assertions/AssertOnValueClass_IsOfClass_Test.java index 88835d2a..15c3dc2a 100644 --- a/src/test/java/org/assertj/db/api/assertions/AssertOnValueClass_IsOfClass_Test.java +++ b/src/test/java/org/assertj/db/api/assertions/AssertOnValueClass_IsOfClass_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.api.assertions; diff --git a/src/test/java/org/assertj/db/api/assertions/AssertOnValueCloseness_IsCloseTo_DateTimeValue_DateTimeValue_Test.java b/src/test/java/org/assertj/db/api/assertions/AssertOnValueCloseness_IsCloseTo_DateTimeValue_DateTimeValue_Test.java index 39bd7de3..18c5b9c4 100644 --- a/src/test/java/org/assertj/db/api/assertions/AssertOnValueCloseness_IsCloseTo_DateTimeValue_DateTimeValue_Test.java +++ b/src/test/java/org/assertj/db/api/assertions/AssertOnValueCloseness_IsCloseTo_DateTimeValue_DateTimeValue_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.api.assertions; diff --git a/src/test/java/org/assertj/db/api/assertions/AssertOnValueCloseness_IsCloseTo_DateTimeValue_DateValue_Test.java b/src/test/java/org/assertj/db/api/assertions/AssertOnValueCloseness_IsCloseTo_DateTimeValue_DateValue_Test.java index 37888123..86183dac 100644 --- a/src/test/java/org/assertj/db/api/assertions/AssertOnValueCloseness_IsCloseTo_DateTimeValue_DateValue_Test.java +++ b/src/test/java/org/assertj/db/api/assertions/AssertOnValueCloseness_IsCloseTo_DateTimeValue_DateValue_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.api.assertions; diff --git a/src/test/java/org/assertj/db/api/assertions/AssertOnValueCloseness_IsCloseTo_DateTimeValue_TimeValue_Test.java b/src/test/java/org/assertj/db/api/assertions/AssertOnValueCloseness_IsCloseTo_DateTimeValue_TimeValue_Test.java index 57b8aacd..80acf362 100644 --- a/src/test/java/org/assertj/db/api/assertions/AssertOnValueCloseness_IsCloseTo_DateTimeValue_TimeValue_Test.java +++ b/src/test/java/org/assertj/db/api/assertions/AssertOnValueCloseness_IsCloseTo_DateTimeValue_TimeValue_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.api.assertions; diff --git a/src/test/java/org/assertj/db/api/assertions/AssertOnValueCloseness_IsCloseTo_DateValue_DateTimeValue_Test.java b/src/test/java/org/assertj/db/api/assertions/AssertOnValueCloseness_IsCloseTo_DateValue_DateTimeValue_Test.java index 1c60ffc5..94cfd956 100644 --- a/src/test/java/org/assertj/db/api/assertions/AssertOnValueCloseness_IsCloseTo_DateValue_DateTimeValue_Test.java +++ b/src/test/java/org/assertj/db/api/assertions/AssertOnValueCloseness_IsCloseTo_DateValue_DateTimeValue_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.api.assertions; diff --git a/src/test/java/org/assertj/db/api/assertions/AssertOnValueCloseness_IsCloseTo_DateValue_DateValue_Test.java b/src/test/java/org/assertj/db/api/assertions/AssertOnValueCloseness_IsCloseTo_DateValue_DateValue_Test.java index 675a59c6..e4aebbe8 100644 --- a/src/test/java/org/assertj/db/api/assertions/AssertOnValueCloseness_IsCloseTo_DateValue_DateValue_Test.java +++ b/src/test/java/org/assertj/db/api/assertions/AssertOnValueCloseness_IsCloseTo_DateValue_DateValue_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.api.assertions; diff --git a/src/test/java/org/assertj/db/api/assertions/AssertOnValueCloseness_IsCloseTo_DateValue_TimeValue_Test.java b/src/test/java/org/assertj/db/api/assertions/AssertOnValueCloseness_IsCloseTo_DateValue_TimeValue_Test.java index a829dac2..abb3d5d1 100644 --- a/src/test/java/org/assertj/db/api/assertions/AssertOnValueCloseness_IsCloseTo_DateValue_TimeValue_Test.java +++ b/src/test/java/org/assertj/db/api/assertions/AssertOnValueCloseness_IsCloseTo_DateValue_TimeValue_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.api.assertions; diff --git a/src/test/java/org/assertj/db/api/assertions/AssertOnValueCloseness_IsCloseTo_Number_Test.java b/src/test/java/org/assertj/db/api/assertions/AssertOnValueCloseness_IsCloseTo_Number_Test.java index 8f9fea10..5cb68ee5 100644 --- a/src/test/java/org/assertj/db/api/assertions/AssertOnValueCloseness_IsCloseTo_Number_Test.java +++ b/src/test/java/org/assertj/db/api/assertions/AssertOnValueCloseness_IsCloseTo_Number_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.api.assertions; diff --git a/src/test/java/org/assertj/db/api/assertions/AssertOnValueCloseness_IsCloseTo_TimeValue_TimeValue_Test.java b/src/test/java/org/assertj/db/api/assertions/AssertOnValueCloseness_IsCloseTo_TimeValue_TimeValue_Test.java index 1ba6eff1..cbdbb60c 100644 --- a/src/test/java/org/assertj/db/api/assertions/AssertOnValueCloseness_IsCloseTo_TimeValue_TimeValue_Test.java +++ b/src/test/java/org/assertj/db/api/assertions/AssertOnValueCloseness_IsCloseTo_TimeValue_TimeValue_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.api.assertions; diff --git a/src/test/java/org/assertj/db/api/assertions/AssertOnValueComparison_IsGreaterThanOrEqualTo_Test.java b/src/test/java/org/assertj/db/api/assertions/AssertOnValueComparison_IsGreaterThanOrEqualTo_Test.java index 4f406fe9..2b6f30a2 100644 --- a/src/test/java/org/assertj/db/api/assertions/AssertOnValueComparison_IsGreaterThanOrEqualTo_Test.java +++ b/src/test/java/org/assertj/db/api/assertions/AssertOnValueComparison_IsGreaterThanOrEqualTo_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.api.assertions; diff --git a/src/test/java/org/assertj/db/api/assertions/AssertOnValueComparison_IsGreaterThan_Test.java b/src/test/java/org/assertj/db/api/assertions/AssertOnValueComparison_IsGreaterThan_Test.java index 4416d411..b735eb8d 100644 --- a/src/test/java/org/assertj/db/api/assertions/AssertOnValueComparison_IsGreaterThan_Test.java +++ b/src/test/java/org/assertj/db/api/assertions/AssertOnValueComparison_IsGreaterThan_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.api.assertions; diff --git a/src/test/java/org/assertj/db/api/assertions/AssertOnValueComparison_IsLessThanOrEqualTo_Test.java b/src/test/java/org/assertj/db/api/assertions/AssertOnValueComparison_IsLessThanOrEqualTo_Test.java index 73cc4b2b..efc6dffa 100644 --- a/src/test/java/org/assertj/db/api/assertions/AssertOnValueComparison_IsLessThanOrEqualTo_Test.java +++ b/src/test/java/org/assertj/db/api/assertions/AssertOnValueComparison_IsLessThanOrEqualTo_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.api.assertions; diff --git a/src/test/java/org/assertj/db/api/assertions/AssertOnValueComparison_IsLessThan_Test.java b/src/test/java/org/assertj/db/api/assertions/AssertOnValueComparison_IsLessThan_Test.java index 801949f3..fe4f461b 100644 --- a/src/test/java/org/assertj/db/api/assertions/AssertOnValueComparison_IsLessThan_Test.java +++ b/src/test/java/org/assertj/db/api/assertions/AssertOnValueComparison_IsLessThan_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.api.assertions; diff --git a/src/test/java/org/assertj/db/api/assertions/AssertOnValueCondition_DoesNotHave_Test.java b/src/test/java/org/assertj/db/api/assertions/AssertOnValueCondition_DoesNotHave_Test.java index 7dbd1aa7..ef4d1fe1 100644 --- a/src/test/java/org/assertj/db/api/assertions/AssertOnValueCondition_DoesNotHave_Test.java +++ b/src/test/java/org/assertj/db/api/assertions/AssertOnValueCondition_DoesNotHave_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.api.assertions; diff --git a/src/test/java/org/assertj/db/api/assertions/AssertOnValueCondition_Has_Test.java b/src/test/java/org/assertj/db/api/assertions/AssertOnValueCondition_Has_Test.java index 17ebf881..28f705a0 100644 --- a/src/test/java/org/assertj/db/api/assertions/AssertOnValueCondition_Has_Test.java +++ b/src/test/java/org/assertj/db/api/assertions/AssertOnValueCondition_Has_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.api.assertions; diff --git a/src/test/java/org/assertj/db/api/assertions/AssertOnValueCondition_IsNot_Test.java b/src/test/java/org/assertj/db/api/assertions/AssertOnValueCondition_IsNot_Test.java index f405ad92..82153d99 100644 --- a/src/test/java/org/assertj/db/api/assertions/AssertOnValueCondition_IsNot_Test.java +++ b/src/test/java/org/assertj/db/api/assertions/AssertOnValueCondition_IsNot_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.api.assertions; diff --git a/src/test/java/org/assertj/db/api/assertions/AssertOnValueCondition_Is_Test.java b/src/test/java/org/assertj/db/api/assertions/AssertOnValueCondition_Is_Test.java index 63841081..d6f60b45 100644 --- a/src/test/java/org/assertj/db/api/assertions/AssertOnValueCondition_Is_Test.java +++ b/src/test/java/org/assertj/db/api/assertions/AssertOnValueCondition_Is_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.api.assertions; diff --git a/src/test/java/org/assertj/db/api/assertions/AssertOnValueCondition_Satisfies_Test.java b/src/test/java/org/assertj/db/api/assertions/AssertOnValueCondition_Satisfies_Test.java index 858c8985..ced97572 100644 --- a/src/test/java/org/assertj/db/api/assertions/AssertOnValueCondition_Satisfies_Test.java +++ b/src/test/java/org/assertj/db/api/assertions/AssertOnValueCondition_Satisfies_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.api.assertions; diff --git a/src/test/java/org/assertj/db/api/assertions/AssertOnValueEquality_IsEqualTo_Boolean_Test.java b/src/test/java/org/assertj/db/api/assertions/AssertOnValueEquality_IsEqualTo_Boolean_Test.java index 68d694ed..f11ae434 100644 --- a/src/test/java/org/assertj/db/api/assertions/AssertOnValueEquality_IsEqualTo_Boolean_Test.java +++ b/src/test/java/org/assertj/db/api/assertions/AssertOnValueEquality_IsEqualTo_Boolean_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.api.assertions; diff --git a/src/test/java/org/assertj/db/api/assertions/AssertOnValueEquality_IsEqualTo_Bytes_Test.java b/src/test/java/org/assertj/db/api/assertions/AssertOnValueEquality_IsEqualTo_Bytes_Test.java index 047dec26..73582a07 100644 --- a/src/test/java/org/assertj/db/api/assertions/AssertOnValueEquality_IsEqualTo_Bytes_Test.java +++ b/src/test/java/org/assertj/db/api/assertions/AssertOnValueEquality_IsEqualTo_Bytes_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.api.assertions; diff --git a/src/test/java/org/assertj/db/api/assertions/AssertOnValueEquality_IsEqualTo_Character_Test.java b/src/test/java/org/assertj/db/api/assertions/AssertOnValueEquality_IsEqualTo_Character_Test.java index fddb471f..efd7a000 100644 --- a/src/test/java/org/assertj/db/api/assertions/AssertOnValueEquality_IsEqualTo_Character_Test.java +++ b/src/test/java/org/assertj/db/api/assertions/AssertOnValueEquality_IsEqualTo_Character_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.api.assertions; diff --git a/src/test/java/org/assertj/db/api/assertions/AssertOnValueEquality_IsEqualTo_DateTimeValue_Test.java b/src/test/java/org/assertj/db/api/assertions/AssertOnValueEquality_IsEqualTo_DateTimeValue_Test.java index 226874c8..258226c3 100644 --- a/src/test/java/org/assertj/db/api/assertions/AssertOnValueEquality_IsEqualTo_DateTimeValue_Test.java +++ b/src/test/java/org/assertj/db/api/assertions/AssertOnValueEquality_IsEqualTo_DateTimeValue_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.api.assertions; diff --git a/src/test/java/org/assertj/db/api/assertions/AssertOnValueEquality_IsEqualTo_DateValue_Test.java b/src/test/java/org/assertj/db/api/assertions/AssertOnValueEquality_IsEqualTo_DateValue_Test.java index fdf92f15..7516f1b9 100644 --- a/src/test/java/org/assertj/db/api/assertions/AssertOnValueEquality_IsEqualTo_DateValue_Test.java +++ b/src/test/java/org/assertj/db/api/assertions/AssertOnValueEquality_IsEqualTo_DateValue_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.api.assertions; diff --git a/src/test/java/org/assertj/db/api/assertions/AssertOnValueEquality_IsEqualTo_LocalDateTime_Test.java b/src/test/java/org/assertj/db/api/assertions/AssertOnValueEquality_IsEqualTo_LocalDateTime_Test.java index d5cd2ca9..e96271dd 100644 --- a/src/test/java/org/assertj/db/api/assertions/AssertOnValueEquality_IsEqualTo_LocalDateTime_Test.java +++ b/src/test/java/org/assertj/db/api/assertions/AssertOnValueEquality_IsEqualTo_LocalDateTime_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.api.assertions; diff --git a/src/test/java/org/assertj/db/api/assertions/AssertOnValueEquality_IsEqualTo_LocalDate_Test.java b/src/test/java/org/assertj/db/api/assertions/AssertOnValueEquality_IsEqualTo_LocalDate_Test.java index 6d8af46c..86710fe9 100644 --- a/src/test/java/org/assertj/db/api/assertions/AssertOnValueEquality_IsEqualTo_LocalDate_Test.java +++ b/src/test/java/org/assertj/db/api/assertions/AssertOnValueEquality_IsEqualTo_LocalDate_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.api.assertions; diff --git a/src/test/java/org/assertj/db/api/assertions/AssertOnValueEquality_IsEqualTo_LocalTime_Test.java b/src/test/java/org/assertj/db/api/assertions/AssertOnValueEquality_IsEqualTo_LocalTime_Test.java index ee485dbc..6fa6424a 100644 --- a/src/test/java/org/assertj/db/api/assertions/AssertOnValueEquality_IsEqualTo_LocalTime_Test.java +++ b/src/test/java/org/assertj/db/api/assertions/AssertOnValueEquality_IsEqualTo_LocalTime_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.api.assertions; diff --git a/src/test/java/org/assertj/db/api/assertions/AssertOnValueEquality_IsEqualTo_Number_Test.java b/src/test/java/org/assertj/db/api/assertions/AssertOnValueEquality_IsEqualTo_Number_Test.java index 82b6133e..2fc95fb7 100644 --- a/src/test/java/org/assertj/db/api/assertions/AssertOnValueEquality_IsEqualTo_Number_Test.java +++ b/src/test/java/org/assertj/db/api/assertions/AssertOnValueEquality_IsEqualTo_Number_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.api.assertions; diff --git a/src/test/java/org/assertj/db/api/assertions/AssertOnValueEquality_IsEqualTo_Object_Test.java b/src/test/java/org/assertj/db/api/assertions/AssertOnValueEquality_IsEqualTo_Object_Test.java index 47e156db..a8d694c3 100644 --- a/src/test/java/org/assertj/db/api/assertions/AssertOnValueEquality_IsEqualTo_Object_Test.java +++ b/src/test/java/org/assertj/db/api/assertions/AssertOnValueEquality_IsEqualTo_Object_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.api.assertions; diff --git a/src/test/java/org/assertj/db/api/assertions/AssertOnValueEquality_IsEqualTo_String_Test.java b/src/test/java/org/assertj/db/api/assertions/AssertOnValueEquality_IsEqualTo_String_Test.java index 1ef66bb2..39d17ea6 100644 --- a/src/test/java/org/assertj/db/api/assertions/AssertOnValueEquality_IsEqualTo_String_Test.java +++ b/src/test/java/org/assertj/db/api/assertions/AssertOnValueEquality_IsEqualTo_String_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.api.assertions; diff --git a/src/test/java/org/assertj/db/api/assertions/AssertOnValueEquality_IsEqualTo_TimeValue_Test.java b/src/test/java/org/assertj/db/api/assertions/AssertOnValueEquality_IsEqualTo_TimeValue_Test.java index 17b3eb43..0eef0f28 100644 --- a/src/test/java/org/assertj/db/api/assertions/AssertOnValueEquality_IsEqualTo_TimeValue_Test.java +++ b/src/test/java/org/assertj/db/api/assertions/AssertOnValueEquality_IsEqualTo_TimeValue_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.api.assertions; diff --git a/src/test/java/org/assertj/db/api/assertions/AssertOnValueEquality_IsEqualTo_UUID_Test.java b/src/test/java/org/assertj/db/api/assertions/AssertOnValueEquality_IsEqualTo_UUID_Test.java index 63104ff2..7768a756 100644 --- a/src/test/java/org/assertj/db/api/assertions/AssertOnValueEquality_IsEqualTo_UUID_Test.java +++ b/src/test/java/org/assertj/db/api/assertions/AssertOnValueEquality_IsEqualTo_UUID_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.api.assertions; diff --git a/src/test/java/org/assertj/db/api/assertions/AssertOnValueEquality_IsFalse_Test.java b/src/test/java/org/assertj/db/api/assertions/AssertOnValueEquality_IsFalse_Test.java index c8d9613b..6ecc49ef 100644 --- a/src/test/java/org/assertj/db/api/assertions/AssertOnValueEquality_IsFalse_Test.java +++ b/src/test/java/org/assertj/db/api/assertions/AssertOnValueEquality_IsFalse_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.api.assertions; diff --git a/src/test/java/org/assertj/db/api/assertions/AssertOnValueEquality_IsTrue_Test.java b/src/test/java/org/assertj/db/api/assertions/AssertOnValueEquality_IsTrue_Test.java index dde2a456..afb2d233 100644 --- a/src/test/java/org/assertj/db/api/assertions/AssertOnValueEquality_IsTrue_Test.java +++ b/src/test/java/org/assertj/db/api/assertions/AssertOnValueEquality_IsTrue_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.api.assertions; diff --git a/src/test/java/org/assertj/db/api/assertions/AssertOnValueEquality_IsZero_Test.java b/src/test/java/org/assertj/db/api/assertions/AssertOnValueEquality_IsZero_Test.java index 61a6a5f9..7262f487 100644 --- a/src/test/java/org/assertj/db/api/assertions/AssertOnValueEquality_IsZero_Test.java +++ b/src/test/java/org/assertj/db/api/assertions/AssertOnValueEquality_IsZero_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.api.assertions; diff --git a/src/test/java/org/assertj/db/api/assertions/AssertOnValueInequality_IsNotEqualTo_Boolean_Test.java b/src/test/java/org/assertj/db/api/assertions/AssertOnValueInequality_IsNotEqualTo_Boolean_Test.java index f2b6088c..e006585f 100644 --- a/src/test/java/org/assertj/db/api/assertions/AssertOnValueInequality_IsNotEqualTo_Boolean_Test.java +++ b/src/test/java/org/assertj/db/api/assertions/AssertOnValueInequality_IsNotEqualTo_Boolean_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.api.assertions; diff --git a/src/test/java/org/assertj/db/api/assertions/AssertOnValueInequality_IsNotEqualTo_Bytes_Test.java b/src/test/java/org/assertj/db/api/assertions/AssertOnValueInequality_IsNotEqualTo_Bytes_Test.java index 6e920535..20deed6d 100644 --- a/src/test/java/org/assertj/db/api/assertions/AssertOnValueInequality_IsNotEqualTo_Bytes_Test.java +++ b/src/test/java/org/assertj/db/api/assertions/AssertOnValueInequality_IsNotEqualTo_Bytes_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.api.assertions; diff --git a/src/test/java/org/assertj/db/api/assertions/AssertOnValueInequality_IsNotEqualTo_Character_Test.java b/src/test/java/org/assertj/db/api/assertions/AssertOnValueInequality_IsNotEqualTo_Character_Test.java index ab99a921..48f22b81 100644 --- a/src/test/java/org/assertj/db/api/assertions/AssertOnValueInequality_IsNotEqualTo_Character_Test.java +++ b/src/test/java/org/assertj/db/api/assertions/AssertOnValueInequality_IsNotEqualTo_Character_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.api.assertions; diff --git a/src/test/java/org/assertj/db/api/assertions/AssertOnValueInequality_IsNotEqualTo_DateTimeValue_Test.java b/src/test/java/org/assertj/db/api/assertions/AssertOnValueInequality_IsNotEqualTo_DateTimeValue_Test.java index bf7e2ecb..46d2f54b 100644 --- a/src/test/java/org/assertj/db/api/assertions/AssertOnValueInequality_IsNotEqualTo_DateTimeValue_Test.java +++ b/src/test/java/org/assertj/db/api/assertions/AssertOnValueInequality_IsNotEqualTo_DateTimeValue_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.api.assertions; diff --git a/src/test/java/org/assertj/db/api/assertions/AssertOnValueInequality_IsNotEqualTo_DateValue_Test.java b/src/test/java/org/assertj/db/api/assertions/AssertOnValueInequality_IsNotEqualTo_DateValue_Test.java index 09bc364d..aebe0013 100644 --- a/src/test/java/org/assertj/db/api/assertions/AssertOnValueInequality_IsNotEqualTo_DateValue_Test.java +++ b/src/test/java/org/assertj/db/api/assertions/AssertOnValueInequality_IsNotEqualTo_DateValue_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.api.assertions; diff --git a/src/test/java/org/assertj/db/api/assertions/AssertOnValueInequality_IsNotEqualTo_LocalDateTime_Test.java b/src/test/java/org/assertj/db/api/assertions/AssertOnValueInequality_IsNotEqualTo_LocalDateTime_Test.java index c32b1efe..35667242 100644 --- a/src/test/java/org/assertj/db/api/assertions/AssertOnValueInequality_IsNotEqualTo_LocalDateTime_Test.java +++ b/src/test/java/org/assertj/db/api/assertions/AssertOnValueInequality_IsNotEqualTo_LocalDateTime_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.api.assertions; diff --git a/src/test/java/org/assertj/db/api/assertions/AssertOnValueInequality_IsNotEqualTo_LocalDate_Test.java b/src/test/java/org/assertj/db/api/assertions/AssertOnValueInequality_IsNotEqualTo_LocalDate_Test.java index 33e677ad..b8f109ed 100644 --- a/src/test/java/org/assertj/db/api/assertions/AssertOnValueInequality_IsNotEqualTo_LocalDate_Test.java +++ b/src/test/java/org/assertj/db/api/assertions/AssertOnValueInequality_IsNotEqualTo_LocalDate_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.api.assertions; diff --git a/src/test/java/org/assertj/db/api/assertions/AssertOnValueInequality_IsNotEqualTo_LocalTime_Test.java b/src/test/java/org/assertj/db/api/assertions/AssertOnValueInequality_IsNotEqualTo_LocalTime_Test.java index 2c143ef0..aca50e16 100644 --- a/src/test/java/org/assertj/db/api/assertions/AssertOnValueInequality_IsNotEqualTo_LocalTime_Test.java +++ b/src/test/java/org/assertj/db/api/assertions/AssertOnValueInequality_IsNotEqualTo_LocalTime_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.api.assertions; diff --git a/src/test/java/org/assertj/db/api/assertions/AssertOnValueInequality_IsNotEqualTo_Number_Test.java b/src/test/java/org/assertj/db/api/assertions/AssertOnValueInequality_IsNotEqualTo_Number_Test.java index 39d441d2..ced45560 100644 --- a/src/test/java/org/assertj/db/api/assertions/AssertOnValueInequality_IsNotEqualTo_Number_Test.java +++ b/src/test/java/org/assertj/db/api/assertions/AssertOnValueInequality_IsNotEqualTo_Number_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.api.assertions; diff --git a/src/test/java/org/assertj/db/api/assertions/AssertOnValueInequality_IsNotEqualTo_Object_Test.java b/src/test/java/org/assertj/db/api/assertions/AssertOnValueInequality_IsNotEqualTo_Object_Test.java index d3060a22..0281ac6a 100644 --- a/src/test/java/org/assertj/db/api/assertions/AssertOnValueInequality_IsNotEqualTo_Object_Test.java +++ b/src/test/java/org/assertj/db/api/assertions/AssertOnValueInequality_IsNotEqualTo_Object_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.api.assertions; diff --git a/src/test/java/org/assertj/db/api/assertions/AssertOnValueInequality_IsNotEqualTo_String_Test.java b/src/test/java/org/assertj/db/api/assertions/AssertOnValueInequality_IsNotEqualTo_String_Test.java index ac931b44..410259e4 100644 --- a/src/test/java/org/assertj/db/api/assertions/AssertOnValueInequality_IsNotEqualTo_String_Test.java +++ b/src/test/java/org/assertj/db/api/assertions/AssertOnValueInequality_IsNotEqualTo_String_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.api.assertions; diff --git a/src/test/java/org/assertj/db/api/assertions/AssertOnValueInequality_IsNotEqualTo_TimeValue_Test.java b/src/test/java/org/assertj/db/api/assertions/AssertOnValueInequality_IsNotEqualTo_TimeValue_Test.java index 863298f2..4d990c83 100644 --- a/src/test/java/org/assertj/db/api/assertions/AssertOnValueInequality_IsNotEqualTo_TimeValue_Test.java +++ b/src/test/java/org/assertj/db/api/assertions/AssertOnValueInequality_IsNotEqualTo_TimeValue_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.api.assertions; diff --git a/src/test/java/org/assertj/db/api/assertions/AssertOnValueInequality_IsNotEqualTo_UUID_Test.java b/src/test/java/org/assertj/db/api/assertions/AssertOnValueInequality_IsNotEqualTo_UUID_Test.java index 1ab686f2..a1c9cbd5 100644 --- a/src/test/java/org/assertj/db/api/assertions/AssertOnValueInequality_IsNotEqualTo_UUID_Test.java +++ b/src/test/java/org/assertj/db/api/assertions/AssertOnValueInequality_IsNotEqualTo_UUID_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.api.assertions; diff --git a/src/test/java/org/assertj/db/api/assertions/AssertOnValueInequality_IsNotZero_Test.java b/src/test/java/org/assertj/db/api/assertions/AssertOnValueInequality_IsNotZero_Test.java index 594f2e5b..20ee0efa 100644 --- a/src/test/java/org/assertj/db/api/assertions/AssertOnValueInequality_IsNotZero_Test.java +++ b/src/test/java/org/assertj/db/api/assertions/AssertOnValueInequality_IsNotZero_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.api.assertions; diff --git a/src/test/java/org/assertj/db/api/assertions/AssertOnValueNullity_IsNotNull_Test.java b/src/test/java/org/assertj/db/api/assertions/AssertOnValueNullity_IsNotNull_Test.java index f2987f49..87f6590a 100644 --- a/src/test/java/org/assertj/db/api/assertions/AssertOnValueNullity_IsNotNull_Test.java +++ b/src/test/java/org/assertj/db/api/assertions/AssertOnValueNullity_IsNotNull_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.api.assertions; diff --git a/src/test/java/org/assertj/db/api/assertions/AssertOnValueNullity_IsNull_Test.java b/src/test/java/org/assertj/db/api/assertions/AssertOnValueNullity_IsNull_Test.java index 4561c6df..e1517919 100644 --- a/src/test/java/org/assertj/db/api/assertions/AssertOnValueNullity_IsNull_Test.java +++ b/src/test/java/org/assertj/db/api/assertions/AssertOnValueNullity_IsNull_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.api.assertions; diff --git a/src/test/java/org/assertj/db/api/assertions/AssertOnValueType_IsBoolean_Test.java b/src/test/java/org/assertj/db/api/assertions/AssertOnValueType_IsBoolean_Test.java index c9f8fa55..97f785a7 100644 --- a/src/test/java/org/assertj/db/api/assertions/AssertOnValueType_IsBoolean_Test.java +++ b/src/test/java/org/assertj/db/api/assertions/AssertOnValueType_IsBoolean_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.api.assertions; diff --git a/src/test/java/org/assertj/db/api/assertions/AssertOnValueType_IsBytes_Test.java b/src/test/java/org/assertj/db/api/assertions/AssertOnValueType_IsBytes_Test.java index 42a3c0b8..b4d35d21 100644 --- a/src/test/java/org/assertj/db/api/assertions/AssertOnValueType_IsBytes_Test.java +++ b/src/test/java/org/assertj/db/api/assertions/AssertOnValueType_IsBytes_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.api.assertions; diff --git a/src/test/java/org/assertj/db/api/assertions/AssertOnValueType_IsDateTime_Test.java b/src/test/java/org/assertj/db/api/assertions/AssertOnValueType_IsDateTime_Test.java index 4c53e54c..59a5eb7f 100644 --- a/src/test/java/org/assertj/db/api/assertions/AssertOnValueType_IsDateTime_Test.java +++ b/src/test/java/org/assertj/db/api/assertions/AssertOnValueType_IsDateTime_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.api.assertions; diff --git a/src/test/java/org/assertj/db/api/assertions/AssertOnValueType_IsDate_Test.java b/src/test/java/org/assertj/db/api/assertions/AssertOnValueType_IsDate_Test.java index 6a698437..fb93f475 100644 --- a/src/test/java/org/assertj/db/api/assertions/AssertOnValueType_IsDate_Test.java +++ b/src/test/java/org/assertj/db/api/assertions/AssertOnValueType_IsDate_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.api.assertions; diff --git a/src/test/java/org/assertj/db/api/assertions/AssertOnValueType_IsNumber_Test.java b/src/test/java/org/assertj/db/api/assertions/AssertOnValueType_IsNumber_Test.java index 35c7f635..ef5a2626 100644 --- a/src/test/java/org/assertj/db/api/assertions/AssertOnValueType_IsNumber_Test.java +++ b/src/test/java/org/assertj/db/api/assertions/AssertOnValueType_IsNumber_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.api.assertions; diff --git a/src/test/java/org/assertj/db/api/assertions/AssertOnValueType_IsOfAnyTypeIn_Test.java b/src/test/java/org/assertj/db/api/assertions/AssertOnValueType_IsOfAnyTypeIn_Test.java index a7e9d733..4a790992 100644 --- a/src/test/java/org/assertj/db/api/assertions/AssertOnValueType_IsOfAnyTypeIn_Test.java +++ b/src/test/java/org/assertj/db/api/assertions/AssertOnValueType_IsOfAnyTypeIn_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.api.assertions; diff --git a/src/test/java/org/assertj/db/api/assertions/AssertOnValueType_IsOfType_Test.java b/src/test/java/org/assertj/db/api/assertions/AssertOnValueType_IsOfType_Test.java index 127c1644..31d22316 100644 --- a/src/test/java/org/assertj/db/api/assertions/AssertOnValueType_IsOfType_Test.java +++ b/src/test/java/org/assertj/db/api/assertions/AssertOnValueType_IsOfType_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.api.assertions; diff --git a/src/test/java/org/assertj/db/api/assertions/AssertOnValueType_IsText_Test.java b/src/test/java/org/assertj/db/api/assertions/AssertOnValueType_IsText_Test.java index 77669c61..97a14ecb 100644 --- a/src/test/java/org/assertj/db/api/assertions/AssertOnValueType_IsText_Test.java +++ b/src/test/java/org/assertj/db/api/assertions/AssertOnValueType_IsText_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.api.assertions; diff --git a/src/test/java/org/assertj/db/api/assertions/AssertOnValueType_IsTime_Test.java b/src/test/java/org/assertj/db/api/assertions/AssertOnValueType_IsTime_Test.java index cf9f3877..cb9bd801 100644 --- a/src/test/java/org/assertj/db/api/assertions/AssertOnValueType_IsTime_Test.java +++ b/src/test/java/org/assertj/db/api/assertions/AssertOnValueType_IsTime_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.api.assertions; diff --git a/src/test/java/org/assertj/db/api/assertions/AssertOnValueType_IsUUID_Test.java b/src/test/java/org/assertj/db/api/assertions/AssertOnValueType_IsUUID_Test.java index c3a6cdaf..7d6d6687 100644 --- a/src/test/java/org/assertj/db/api/assertions/AssertOnValueType_IsUUID_Test.java +++ b/src/test/java/org/assertj/db/api/assertions/AssertOnValueType_IsUUID_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.api.assertions; diff --git a/src/test/java/org/assertj/db/api/assertions/BDDAssertions_Test.java b/src/test/java/org/assertj/db/api/assertions/BDDAssertions_Test.java index aaf4c213..182441e6 100644 --- a/src/test/java/org/assertj/db/api/assertions/BDDAssertions_Test.java +++ b/src/test/java/org/assertj/db/api/assertions/BDDAssertions_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.api.assertions; diff --git a/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnChangeType_IsCreation_Test.java b/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnChangeType_IsCreation_Test.java index ff12d0cb..2130a9a0 100644 --- a/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnChangeType_IsCreation_Test.java +++ b/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnChangeType_IsCreation_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.api.assertions.impl; diff --git a/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnChangeType_IsDeletion_Test.java b/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnChangeType_IsDeletion_Test.java index da0bc04b..6d94c09a 100644 --- a/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnChangeType_IsDeletion_Test.java +++ b/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnChangeType_IsDeletion_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.api.assertions.impl; diff --git a/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnChangeType_IsModification_Test.java b/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnChangeType_IsModification_Test.java index 62020fdb..25c4b55b 100644 --- a/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnChangeType_IsModification_Test.java +++ b/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnChangeType_IsModification_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.api.assertions.impl; diff --git a/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnChangeType_IsOfType_Test.java b/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnChangeType_IsOfType_Test.java index 436304ce..10ee4db6 100644 --- a/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnChangeType_IsOfType_Test.java +++ b/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnChangeType_IsOfType_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.api.assertions.impl; diff --git a/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnColumnClass_IsOfClass_Test.java b/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnColumnClass_IsOfClass_Test.java index 968a8554..32ac2662 100644 --- a/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnColumnClass_IsOfClass_Test.java +++ b/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnColumnClass_IsOfClass_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.api.assertions.impl; diff --git a/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnColumnContent_ContainsValues_Boolean_Test.java b/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnColumnContent_ContainsValues_Boolean_Test.java index 29a34a86..f21ca51b 100644 --- a/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnColumnContent_ContainsValues_Boolean_Test.java +++ b/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnColumnContent_ContainsValues_Boolean_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.api.assertions.impl; diff --git a/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnColumnContent_ContainsValues_Bytes_Test.java b/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnColumnContent_ContainsValues_Bytes_Test.java index 809297c1..adab0142 100644 --- a/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnColumnContent_ContainsValues_Bytes_Test.java +++ b/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnColumnContent_ContainsValues_Bytes_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.api.assertions.impl; diff --git a/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnColumnContent_ContainsValues_Character_Test.java b/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnColumnContent_ContainsValues_Character_Test.java index b29c1510..8acda9c9 100644 --- a/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnColumnContent_ContainsValues_Character_Test.java +++ b/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnColumnContent_ContainsValues_Character_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.api.assertions.impl; diff --git a/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnColumnContent_ContainsValues_DateTimeValue_Test.java b/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnColumnContent_ContainsValues_DateTimeValue_Test.java index f362bee3..bdf074d8 100644 --- a/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnColumnContent_ContainsValues_DateTimeValue_Test.java +++ b/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnColumnContent_ContainsValues_DateTimeValue_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.api.assertions.impl; diff --git a/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnColumnContent_ContainsValues_DateValue_Test.java b/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnColumnContent_ContainsValues_DateValue_Test.java index 6fb8a8b2..fbccee57 100644 --- a/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnColumnContent_ContainsValues_DateValue_Test.java +++ b/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnColumnContent_ContainsValues_DateValue_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.api.assertions.impl; diff --git a/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnColumnContent_ContainsValues_Number_Test.java b/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnColumnContent_ContainsValues_Number_Test.java index 30a7dc0f..59d52c97 100644 --- a/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnColumnContent_ContainsValues_Number_Test.java +++ b/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnColumnContent_ContainsValues_Number_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.api.assertions.impl; diff --git a/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnColumnContent_ContainsValues_Object_Test.java b/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnColumnContent_ContainsValues_Object_Test.java index f515b241..47030f10 100644 --- a/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnColumnContent_ContainsValues_Object_Test.java +++ b/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnColumnContent_ContainsValues_Object_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.api.assertions.impl; diff --git a/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnColumnContent_ContainsValues_String_Test.java b/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnColumnContent_ContainsValues_String_Test.java index 574576e5..6ecb77f6 100644 --- a/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnColumnContent_ContainsValues_String_Test.java +++ b/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnColumnContent_ContainsValues_String_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.api.assertions.impl; diff --git a/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnColumnContent_ContainsValues_TimeValue_Test.java b/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnColumnContent_ContainsValues_TimeValue_Test.java index 92981593..82cc4585 100644 --- a/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnColumnContent_ContainsValues_TimeValue_Test.java +++ b/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnColumnContent_ContainsValues_TimeValue_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.api.assertions.impl; diff --git a/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnColumnContent_ContainsValues_UUID_Test.java b/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnColumnContent_ContainsValues_UUID_Test.java index b568b0ce..f400d0ab 100644 --- a/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnColumnContent_ContainsValues_UUID_Test.java +++ b/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnColumnContent_ContainsValues_UUID_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.api.assertions.impl; diff --git a/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnColumnEquality_HasValues_Boolean_Test.java b/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnColumnEquality_HasValues_Boolean_Test.java index 2501c5cf..550bbb24 100644 --- a/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnColumnEquality_HasValues_Boolean_Test.java +++ b/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnColumnEquality_HasValues_Boolean_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.api.assertions.impl; diff --git a/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnColumnEquality_HasValues_Bytes_Test.java b/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnColumnEquality_HasValues_Bytes_Test.java index b914f5e9..37c0ab50 100644 --- a/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnColumnEquality_HasValues_Bytes_Test.java +++ b/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnColumnEquality_HasValues_Bytes_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.api.assertions.impl; diff --git a/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnColumnEquality_HasValues_Character_Test.java b/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnColumnEquality_HasValues_Character_Test.java index 246d14be..32f09208 100644 --- a/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnColumnEquality_HasValues_Character_Test.java +++ b/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnColumnEquality_HasValues_Character_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.api.assertions.impl; diff --git a/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnColumnEquality_HasValues_DateTimeValue_Test.java b/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnColumnEquality_HasValues_DateTimeValue_Test.java index 65508efe..858c9a2d 100644 --- a/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnColumnEquality_HasValues_DateTimeValue_Test.java +++ b/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnColumnEquality_HasValues_DateTimeValue_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.api.assertions.impl; diff --git a/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnColumnEquality_HasValues_DateValue_Test.java b/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnColumnEquality_HasValues_DateValue_Test.java index 7ef3c277..f3b32904 100644 --- a/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnColumnEquality_HasValues_DateValue_Test.java +++ b/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnColumnEquality_HasValues_DateValue_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.api.assertions.impl; diff --git a/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnColumnEquality_HasValues_Number_Test.java b/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnColumnEquality_HasValues_Number_Test.java index c890ab53..9ef211a1 100644 --- a/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnColumnEquality_HasValues_Number_Test.java +++ b/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnColumnEquality_HasValues_Number_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.api.assertions.impl; diff --git a/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnColumnEquality_HasValues_Object_Test.java b/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnColumnEquality_HasValues_Object_Test.java index aa0c0b1e..865874ed 100644 --- a/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnColumnEquality_HasValues_Object_Test.java +++ b/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnColumnEquality_HasValues_Object_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.api.assertions.impl; diff --git a/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnColumnEquality_HasValues_String_Test.java b/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnColumnEquality_HasValues_String_Test.java index e7464455..52968cb0 100644 --- a/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnColumnEquality_HasValues_String_Test.java +++ b/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnColumnEquality_HasValues_String_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.api.assertions.impl; diff --git a/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnColumnEquality_HasValues_TimeValue_Test.java b/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnColumnEquality_HasValues_TimeValue_Test.java index 3d1b2c55..6789caf2 100644 --- a/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnColumnEquality_HasValues_TimeValue_Test.java +++ b/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnColumnEquality_HasValues_TimeValue_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.api.assertions.impl; diff --git a/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnColumnEquality_HasValues_UUID_Test.java b/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnColumnEquality_HasValues_UUID_Test.java index cc3681de..5c7c4393 100644 --- a/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnColumnEquality_HasValues_UUID_Test.java +++ b/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnColumnEquality_HasValues_UUID_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.api.assertions.impl; diff --git a/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnColumnName_HasColumnName_Test.java b/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnColumnName_HasColumnName_Test.java index b1c057d4..ac026729 100644 --- a/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnColumnName_HasColumnName_Test.java +++ b/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnColumnName_HasColumnName_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.api.assertions.impl; diff --git a/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnColumnOfChangeClass_IsOfClass_Test.java b/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnColumnOfChangeClass_IsOfClass_Test.java index 4a5e3d7e..12096e1e 100644 --- a/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnColumnOfChangeClass_IsOfClass_Test.java +++ b/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnColumnOfChangeClass_IsOfClass_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.api.assertions.impl; diff --git a/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnColumnOfChangeEquality_HasValues_One_Boolean_Test.java b/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnColumnOfChangeEquality_HasValues_One_Boolean_Test.java index b72506b1..70dbebc6 100644 --- a/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnColumnOfChangeEquality_HasValues_One_Boolean_Test.java +++ b/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnColumnOfChangeEquality_HasValues_One_Boolean_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.api.assertions.impl; diff --git a/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnColumnOfChangeEquality_HasValues_One_Bytes_Test.java b/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnColumnOfChangeEquality_HasValues_One_Bytes_Test.java index 0cbb81b9..0ba22632 100644 --- a/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnColumnOfChangeEquality_HasValues_One_Bytes_Test.java +++ b/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnColumnOfChangeEquality_HasValues_One_Bytes_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.api.assertions.impl; diff --git a/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnColumnOfChangeEquality_HasValues_One_Character_Test.java b/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnColumnOfChangeEquality_HasValues_One_Character_Test.java index 91fc7336..8d2aa092 100644 --- a/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnColumnOfChangeEquality_HasValues_One_Character_Test.java +++ b/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnColumnOfChangeEquality_HasValues_One_Character_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.api.assertions.impl; diff --git a/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnColumnOfChangeEquality_HasValues_One_DateTimeValue_Test.java b/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnColumnOfChangeEquality_HasValues_One_DateTimeValue_Test.java index 22e35446..213d3ec3 100644 --- a/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnColumnOfChangeEquality_HasValues_One_DateTimeValue_Test.java +++ b/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnColumnOfChangeEquality_HasValues_One_DateTimeValue_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.api.assertions.impl; diff --git a/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnColumnOfChangeEquality_HasValues_One_DateValue_Test.java b/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnColumnOfChangeEquality_HasValues_One_DateValue_Test.java index 7c2bae1d..4201f977 100644 --- a/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnColumnOfChangeEquality_HasValues_One_DateValue_Test.java +++ b/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnColumnOfChangeEquality_HasValues_One_DateValue_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.api.assertions.impl; diff --git a/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnColumnOfChangeEquality_HasValues_One_Number_Test.java b/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnColumnOfChangeEquality_HasValues_One_Number_Test.java index 983ce42d..908913dd 100644 --- a/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnColumnOfChangeEquality_HasValues_One_Number_Test.java +++ b/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnColumnOfChangeEquality_HasValues_One_Number_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.api.assertions.impl; diff --git a/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnColumnOfChangeEquality_HasValues_One_Object_Test.java b/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnColumnOfChangeEquality_HasValues_One_Object_Test.java index 2254c7b4..2397012d 100644 --- a/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnColumnOfChangeEquality_HasValues_One_Object_Test.java +++ b/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnColumnOfChangeEquality_HasValues_One_Object_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.api.assertions.impl; diff --git a/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnColumnOfChangeEquality_HasValues_One_String_Test.java b/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnColumnOfChangeEquality_HasValues_One_String_Test.java index 376e265d..e5686b38 100644 --- a/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnColumnOfChangeEquality_HasValues_One_String_Test.java +++ b/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnColumnOfChangeEquality_HasValues_One_String_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.api.assertions.impl; diff --git a/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnColumnOfChangeEquality_HasValues_One_TimeValue_Test.java b/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnColumnOfChangeEquality_HasValues_One_TimeValue_Test.java index cfc89488..f4dc2068 100644 --- a/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnColumnOfChangeEquality_HasValues_One_TimeValue_Test.java +++ b/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnColumnOfChangeEquality_HasValues_One_TimeValue_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.api.assertions.impl; diff --git a/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnColumnOfChangeEquality_HasValues_One_UUID_Test.java b/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnColumnOfChangeEquality_HasValues_One_UUID_Test.java index 7039299b..815fe8e4 100644 --- a/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnColumnOfChangeEquality_HasValues_One_UUID_Test.java +++ b/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnColumnOfChangeEquality_HasValues_One_UUID_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.api.assertions.impl; diff --git a/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnColumnOfChangeEquality_HasValues_Two_Boolean_Test.java b/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnColumnOfChangeEquality_HasValues_Two_Boolean_Test.java index d715fc7c..3a1c217d 100644 --- a/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnColumnOfChangeEquality_HasValues_Two_Boolean_Test.java +++ b/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnColumnOfChangeEquality_HasValues_Two_Boolean_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.api.assertions.impl; diff --git a/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnColumnOfChangeEquality_HasValues_Two_Bytes_Test.java b/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnColumnOfChangeEquality_HasValues_Two_Bytes_Test.java index 5afc18c6..b7702ef0 100644 --- a/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnColumnOfChangeEquality_HasValues_Two_Bytes_Test.java +++ b/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnColumnOfChangeEquality_HasValues_Two_Bytes_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.api.assertions.impl; diff --git a/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnColumnOfChangeEquality_HasValues_Two_Character_Test.java b/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnColumnOfChangeEquality_HasValues_Two_Character_Test.java index f41992cb..89348548 100644 --- a/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnColumnOfChangeEquality_HasValues_Two_Character_Test.java +++ b/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnColumnOfChangeEquality_HasValues_Two_Character_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.api.assertions.impl; diff --git a/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnColumnOfChangeEquality_HasValues_Two_DateTimeValue_Test.java b/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnColumnOfChangeEquality_HasValues_Two_DateTimeValue_Test.java index a901cd50..510845be 100644 --- a/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnColumnOfChangeEquality_HasValues_Two_DateTimeValue_Test.java +++ b/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnColumnOfChangeEquality_HasValues_Two_DateTimeValue_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.api.assertions.impl; diff --git a/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnColumnOfChangeEquality_HasValues_Two_DateValue_Test.java b/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnColumnOfChangeEquality_HasValues_Two_DateValue_Test.java index 949ec8ad..ab9ae0f0 100644 --- a/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnColumnOfChangeEquality_HasValues_Two_DateValue_Test.java +++ b/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnColumnOfChangeEquality_HasValues_Two_DateValue_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.api.assertions.impl; diff --git a/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnColumnOfChangeEquality_HasValues_Two_Number_Test.java b/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnColumnOfChangeEquality_HasValues_Two_Number_Test.java index 4601258b..ba3d1589 100644 --- a/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnColumnOfChangeEquality_HasValues_Two_Number_Test.java +++ b/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnColumnOfChangeEquality_HasValues_Two_Number_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.api.assertions.impl; diff --git a/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnColumnOfChangeEquality_HasValues_Two_Objects_Test.java b/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnColumnOfChangeEquality_HasValues_Two_Objects_Test.java index ab5e2fdc..28e3a797 100644 --- a/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnColumnOfChangeEquality_HasValues_Two_Objects_Test.java +++ b/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnColumnOfChangeEquality_HasValues_Two_Objects_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.api.assertions.impl; diff --git a/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnColumnOfChangeEquality_HasValues_Two_String_Test.java b/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnColumnOfChangeEquality_HasValues_Two_String_Test.java index c6ff924f..9160d18e 100644 --- a/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnColumnOfChangeEquality_HasValues_Two_String_Test.java +++ b/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnColumnOfChangeEquality_HasValues_Two_String_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.api.assertions.impl; diff --git a/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnColumnOfChangeEquality_HasValues_Two_TimeValue_Test.java b/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnColumnOfChangeEquality_HasValues_Two_TimeValue_Test.java index 19d7413e..c441b9d0 100644 --- a/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnColumnOfChangeEquality_HasValues_Two_TimeValue_Test.java +++ b/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnColumnOfChangeEquality_HasValues_Two_TimeValue_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.api.assertions.impl; diff --git a/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnColumnOfChangeEquality_HasValues_Two_UUID_Test.java b/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnColumnOfChangeEquality_HasValues_Two_UUID_Test.java index 177d5c1e..ac631877 100644 --- a/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnColumnOfChangeEquality_HasValues_Two_UUID_Test.java +++ b/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnColumnOfChangeEquality_HasValues_Two_UUID_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.api.assertions.impl; diff --git a/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnColumnOfChangeType_IsBoolean_Test.java b/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnColumnOfChangeType_IsBoolean_Test.java index eab0d48d..ac71a85e 100644 --- a/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnColumnOfChangeType_IsBoolean_Test.java +++ b/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnColumnOfChangeType_IsBoolean_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.api.assertions.impl; diff --git a/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnColumnOfChangeType_IsBytes_Test.java b/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnColumnOfChangeType_IsBytes_Test.java index 6548514d..84418f53 100644 --- a/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnColumnOfChangeType_IsBytes_Test.java +++ b/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnColumnOfChangeType_IsBytes_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.api.assertions.impl; diff --git a/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnColumnOfChangeType_IsDateTime_Test.java b/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnColumnOfChangeType_IsDateTime_Test.java index cd0b6921..c2c78d6d 100644 --- a/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnColumnOfChangeType_IsDateTime_Test.java +++ b/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnColumnOfChangeType_IsDateTime_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.api.assertions.impl; diff --git a/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnColumnOfChangeType_IsDate_Test.java b/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnColumnOfChangeType_IsDate_Test.java index aa7bab47..87c93be0 100644 --- a/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnColumnOfChangeType_IsDate_Test.java +++ b/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnColumnOfChangeType_IsDate_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.api.assertions.impl; diff --git a/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnColumnOfChangeType_IsNumber_Test.java b/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnColumnOfChangeType_IsNumber_Test.java index 859298d1..e65221f6 100644 --- a/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnColumnOfChangeType_IsNumber_Test.java +++ b/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnColumnOfChangeType_IsNumber_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.api.assertions.impl; diff --git a/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnColumnOfChangeType_IsOfAnyOfTypes_Test.java b/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnColumnOfChangeType_IsOfAnyOfTypes_Test.java index 13ef8551..0434112c 100644 --- a/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnColumnOfChangeType_IsOfAnyOfTypes_Test.java +++ b/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnColumnOfChangeType_IsOfAnyOfTypes_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.api.assertions.impl; diff --git a/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnColumnOfChangeType_IsOfType_Test.java b/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnColumnOfChangeType_IsOfType_Test.java index 01a55c91..b208a3df 100644 --- a/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnColumnOfChangeType_IsOfType_Test.java +++ b/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnColumnOfChangeType_IsOfType_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.api.assertions.impl; diff --git a/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnColumnOfChangeType_IsText_Test.java b/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnColumnOfChangeType_IsText_Test.java index 0677138c..4fccbabc 100644 --- a/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnColumnOfChangeType_IsText_Test.java +++ b/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnColumnOfChangeType_IsText_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.api.assertions.impl; diff --git a/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnColumnOfChangeType_IsTime_Test.java b/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnColumnOfChangeType_IsTime_Test.java index b0a81067..02871d20 100644 --- a/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnColumnOfChangeType_IsTime_Test.java +++ b/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnColumnOfChangeType_IsTime_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.api.assertions.impl; diff --git a/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnColumnType_IsBoolean_Test.java b/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnColumnType_IsBoolean_Test.java index 89188c61..ca5e642d 100644 --- a/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnColumnType_IsBoolean_Test.java +++ b/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnColumnType_IsBoolean_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.api.assertions.impl; diff --git a/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnColumnType_IsBytes_Test.java b/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnColumnType_IsBytes_Test.java index 8666e60a..a7392913 100644 --- a/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnColumnType_IsBytes_Test.java +++ b/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnColumnType_IsBytes_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.api.assertions.impl; diff --git a/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnColumnType_IsDateTime_Test.java b/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnColumnType_IsDateTime_Test.java index 8afb13af..f418074a 100644 --- a/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnColumnType_IsDateTime_Test.java +++ b/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnColumnType_IsDateTime_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.api.assertions.impl; diff --git a/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnColumnType_IsDate_Test.java b/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnColumnType_IsDate_Test.java index 919def73..072b51a7 100644 --- a/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnColumnType_IsDate_Test.java +++ b/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnColumnType_IsDate_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.api.assertions.impl; diff --git a/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnColumnType_IsNumber_Test.java b/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnColumnType_IsNumber_Test.java index f3017fff..743fb62f 100644 --- a/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnColumnType_IsNumber_Test.java +++ b/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnColumnType_IsNumber_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.api.assertions.impl; diff --git a/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnColumnType_IsOfAnyTypeIn_Test.java b/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnColumnType_IsOfAnyTypeIn_Test.java index 7b3eb365..47f9ee82 100644 --- a/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnColumnType_IsOfAnyTypeIn_Test.java +++ b/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnColumnType_IsOfAnyTypeIn_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.api.assertions.impl; diff --git a/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnColumnType_IsOfType_Test.java b/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnColumnType_IsOfType_Test.java index 2e5869ba..6bdd3b24 100644 --- a/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnColumnType_IsOfType_Test.java +++ b/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnColumnType_IsOfType_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.api.assertions.impl; diff --git a/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnColumnType_IsText_Test.java b/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnColumnType_IsText_Test.java index a36e66f5..ceca6d0e 100644 --- a/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnColumnType_IsText_Test.java +++ b/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnColumnType_IsText_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.api.assertions.impl; diff --git a/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnColumnType_IsTime_Test.java b/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnColumnType_IsTime_Test.java index f88d08ff..e62b6eae 100644 --- a/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnColumnType_IsTime_Test.java +++ b/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnColumnType_IsTime_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.api.assertions.impl; diff --git a/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnColumnType_IsUUID_Test.java b/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnColumnType_IsUUID_Test.java index fa7cb012..0c70baab 100644 --- a/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnColumnType_IsUUID_Test.java +++ b/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnColumnType_IsUUID_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.api.assertions.impl; diff --git a/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnDataType_IsOnDataType_Test.java b/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnDataType_IsOnDataType_Test.java index e31086af..d036e481 100644 --- a/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnDataType_IsOnDataType_Test.java +++ b/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnDataType_IsOnDataType_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.api.assertions.impl; diff --git a/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnDataType_IsOnRequest_Test.java b/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnDataType_IsOnRequest_Test.java index a7c02123..3642a703 100644 --- a/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnDataType_IsOnRequest_Test.java +++ b/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnDataType_IsOnRequest_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.api.assertions.impl; diff --git a/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnDataType_IsOnTable_Name_Test.java b/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnDataType_IsOnTable_Name_Test.java index 5a171097..d8ad9ff8 100644 --- a/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnDataType_IsOnTable_Name_Test.java +++ b/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnDataType_IsOnTable_Name_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.api.assertions.impl; diff --git a/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnDataType_IsOnTable_Test.java b/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnDataType_IsOnTable_Test.java index 24be1ec3..5ab22b3f 100644 --- a/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnDataType_IsOnTable_Test.java +++ b/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnDataType_IsOnTable_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.api.assertions.impl; diff --git a/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnModifiedColumn_IsModified_Test.java b/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnModifiedColumn_IsModified_Test.java index 6e9a062a..66e8c89a 100644 --- a/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnModifiedColumn_IsModified_Test.java +++ b/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnModifiedColumn_IsModified_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.api.assertions.impl; diff --git a/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnModifiedColumn_IsNotModified_Test.java b/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnModifiedColumn_IsNotModified_Test.java index 118a6ea0..e8bdfcef 100644 --- a/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnModifiedColumn_IsNotModified_Test.java +++ b/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnModifiedColumn_IsNotModified_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.api.assertions.impl; diff --git a/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnModifiedColumns_HasModifiedColumns_Integer_Test.java b/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnModifiedColumns_HasModifiedColumns_Integer_Test.java index abb2f680..84e105ab 100644 --- a/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnModifiedColumns_HasModifiedColumns_Integer_Test.java +++ b/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnModifiedColumns_HasModifiedColumns_Integer_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.api.assertions.impl; diff --git a/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnModifiedColumns_HasModifiedColumns_String_Test.java b/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnModifiedColumns_HasModifiedColumns_String_Test.java index 689c1f19..f3026f0a 100644 --- a/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnModifiedColumns_HasModifiedColumns_String_Test.java +++ b/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnModifiedColumns_HasModifiedColumns_String_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.api.assertions.impl; diff --git a/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnModifiedColumns_HasNumberOfModifiedColumnsGreaterThanOrEqualTo_Test.java b/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnModifiedColumns_HasNumberOfModifiedColumnsGreaterThanOrEqualTo_Test.java index e56f8509..eb15742e 100644 --- a/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnModifiedColumns_HasNumberOfModifiedColumnsGreaterThanOrEqualTo_Test.java +++ b/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnModifiedColumns_HasNumberOfModifiedColumnsGreaterThanOrEqualTo_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.api.assertions.impl; diff --git a/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnModifiedColumns_HasNumberOfModifiedColumnsGreaterThan_Test.java b/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnModifiedColumns_HasNumberOfModifiedColumnsGreaterThan_Test.java index 6119a5af..c8c99221 100644 --- a/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnModifiedColumns_HasNumberOfModifiedColumnsGreaterThan_Test.java +++ b/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnModifiedColumns_HasNumberOfModifiedColumnsGreaterThan_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.api.assertions.impl; diff --git a/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnModifiedColumns_HasNumberOfModifiedColumnsLessThanOrEqualTo_Test.java b/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnModifiedColumns_HasNumberOfModifiedColumnsLessThanOrEqualTo_Test.java index 093d2d09..a1051477 100644 --- a/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnModifiedColumns_HasNumberOfModifiedColumnsLessThanOrEqualTo_Test.java +++ b/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnModifiedColumns_HasNumberOfModifiedColumnsLessThanOrEqualTo_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.api.assertions.impl; diff --git a/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnModifiedColumns_HasNumberOfModifiedColumnsLessThan_Test.java b/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnModifiedColumns_HasNumberOfModifiedColumnsLessThan_Test.java index 335a940d..320502bc 100644 --- a/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnModifiedColumns_HasNumberOfModifiedColumnsLessThan_Test.java +++ b/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnModifiedColumns_HasNumberOfModifiedColumnsLessThan_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.api.assertions.impl; diff --git a/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnModifiedColumns_HasNumberOfModifiedColumns_Test.java b/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnModifiedColumns_HasNumberOfModifiedColumns_Test.java index cf990b9c..d8af3e64 100644 --- a/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnModifiedColumns_HasNumberOfModifiedColumns_Test.java +++ b/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnModifiedColumns_HasNumberOfModifiedColumns_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.api.assertions.impl; diff --git a/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnNumberOfChanges_HasNumberOfChangesGreaterThanOrEqualTo_Test.java b/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnNumberOfChanges_HasNumberOfChangesGreaterThanOrEqualTo_Test.java index b470f3ce..592f473a 100644 --- a/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnNumberOfChanges_HasNumberOfChangesGreaterThanOrEqualTo_Test.java +++ b/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnNumberOfChanges_HasNumberOfChangesGreaterThanOrEqualTo_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.api.assertions.impl; diff --git a/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnNumberOfChanges_HasNumberOfChangesGreaterThan_Test.java b/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnNumberOfChanges_HasNumberOfChangesGreaterThan_Test.java index dcd468fd..edaf9052 100644 --- a/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnNumberOfChanges_HasNumberOfChangesGreaterThan_Test.java +++ b/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnNumberOfChanges_HasNumberOfChangesGreaterThan_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.api.assertions.impl; diff --git a/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnNumberOfChanges_HasNumberOfChangesLessThanOrEqualTo_Test.java b/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnNumberOfChanges_HasNumberOfChangesLessThanOrEqualTo_Test.java index 61fa7e17..4306f42d 100644 --- a/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnNumberOfChanges_HasNumberOfChangesLessThanOrEqualTo_Test.java +++ b/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnNumberOfChanges_HasNumberOfChangesLessThanOrEqualTo_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.api.assertions.impl; diff --git a/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnNumberOfChanges_HasNumberOfChangesLessThan_Test.java b/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnNumberOfChanges_HasNumberOfChangesLessThan_Test.java index 613f6f90..c3e99760 100644 --- a/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnNumberOfChanges_HasNumberOfChangesLessThan_Test.java +++ b/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnNumberOfChanges_HasNumberOfChangesLessThan_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.api.assertions.impl; diff --git a/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnNumberOfChanges_HasNumberOfChanges_Test.java b/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnNumberOfChanges_HasNumberOfChanges_Test.java index c3fea7d5..07ffdac3 100644 --- a/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnNumberOfChanges_HasNumberOfChanges_Test.java +++ b/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnNumberOfChanges_HasNumberOfChanges_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.api.assertions.impl; diff --git a/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnNumberOfColumns_HasNumberOfColumnsGreaterThanOrEqualTo_Test.java b/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnNumberOfColumns_HasNumberOfColumnsGreaterThanOrEqualTo_Test.java index 112750d8..256bd1de 100644 --- a/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnNumberOfColumns_HasNumberOfColumnsGreaterThanOrEqualTo_Test.java +++ b/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnNumberOfColumns_HasNumberOfColumnsGreaterThanOrEqualTo_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.api.assertions.impl; diff --git a/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnNumberOfColumns_HasNumberOfColumnsGreaterThan_Test.java b/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnNumberOfColumns_HasNumberOfColumnsGreaterThan_Test.java index 8d079a71..dd2035b6 100644 --- a/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnNumberOfColumns_HasNumberOfColumnsGreaterThan_Test.java +++ b/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnNumberOfColumns_HasNumberOfColumnsGreaterThan_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.api.assertions.impl; diff --git a/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnNumberOfColumns_HasNumberOfColumnsLessThanOrEqualTo_Test.java b/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnNumberOfColumns_HasNumberOfColumnsLessThanOrEqualTo_Test.java index b13792f3..342f941b 100644 --- a/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnNumberOfColumns_HasNumberOfColumnsLessThanOrEqualTo_Test.java +++ b/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnNumberOfColumns_HasNumberOfColumnsLessThanOrEqualTo_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.api.assertions.impl; diff --git a/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnNumberOfColumns_HasNumberOfColumnsLessThan_Test.java b/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnNumberOfColumns_HasNumberOfColumnsLessThan_Test.java index 43fec72a..b26ae0e8 100644 --- a/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnNumberOfColumns_HasNumberOfColumnsLessThan_Test.java +++ b/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnNumberOfColumns_HasNumberOfColumnsLessThan_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.api.assertions.impl; diff --git a/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnNumberOfColumns_HasNumberOfColumns_Test.java b/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnNumberOfColumns_HasNumberOfColumns_Test.java index ffb7e2df..2ba56c1b 100644 --- a/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnNumberOfColumns_HasNumberOfColumns_Test.java +++ b/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnNumberOfColumns_HasNumberOfColumns_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.api.assertions.impl; diff --git a/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnNumberOfRows_HasNumberOfRowsGreaterThanOrEqualTo_Test.java b/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnNumberOfRows_HasNumberOfRowsGreaterThanOrEqualTo_Test.java index 232c71b3..3a5fdcbe 100644 --- a/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnNumberOfRows_HasNumberOfRowsGreaterThanOrEqualTo_Test.java +++ b/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnNumberOfRows_HasNumberOfRowsGreaterThanOrEqualTo_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.api.assertions.impl; diff --git a/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnNumberOfRows_HasNumberOfRowsGreaterThan_Test.java b/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnNumberOfRows_HasNumberOfRowsGreaterThan_Test.java index 38f1b1ff..a4a441b5 100644 --- a/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnNumberOfRows_HasNumberOfRowsGreaterThan_Test.java +++ b/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnNumberOfRows_HasNumberOfRowsGreaterThan_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.api.assertions.impl; diff --git a/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnNumberOfRows_HasNumberOfRowsLessThanOrEqualTo_Test.java b/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnNumberOfRows_HasNumberOfRowsLessThanOrEqualTo_Test.java index 64495e5c..ff8fc65e 100644 --- a/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnNumberOfRows_HasNumberOfRowsLessThanOrEqualTo_Test.java +++ b/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnNumberOfRows_HasNumberOfRowsLessThanOrEqualTo_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.api.assertions.impl; diff --git a/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnNumberOfRows_HasNumberOfRowsLessThan_Test.java b/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnNumberOfRows_HasNumberOfRowsLessThan_Test.java index c544fbbd..1219a65a 100644 --- a/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnNumberOfRows_HasNumberOfRowsLessThan_Test.java +++ b/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnNumberOfRows_HasNumberOfRowsLessThan_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.api.assertions.impl; diff --git a/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnNumberOfRows_HasNumberOfRows_Test.java b/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnNumberOfRows_HasNumberOfRows_Test.java index a7d5263e..58b4c1aa 100644 --- a/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnNumberOfRows_HasNumberOfRows_Test.java +++ b/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnNumberOfRows_HasNumberOfRows_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.api.assertions.impl; diff --git a/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnPrimaryKey_HasPksNames_Test.java b/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnPrimaryKey_HasPksNames_Test.java index 06b12b25..6aad6961 100644 --- a/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnPrimaryKey_HasPksNames_Test.java +++ b/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnPrimaryKey_HasPksNames_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.api.assertions.impl; diff --git a/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnPrimaryKey_HasPksValues_Test.java b/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnPrimaryKey_HasPksValues_Test.java index 9c842214..acdc3cb0 100644 --- a/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnPrimaryKey_HasPksValues_Test.java +++ b/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnPrimaryKey_HasPksValues_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.api.assertions.impl; diff --git a/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnRowCondition_HasValues_Satisfying_Test.java b/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnRowCondition_HasValues_Satisfying_Test.java index e01a5ba9..574adbab 100644 --- a/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnRowCondition_HasValues_Satisfying_Test.java +++ b/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnRowCondition_HasValues_Satisfying_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.api.assertions.impl; diff --git a/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnRowEquality_HasValues_Test.java b/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnRowEquality_HasValues_Test.java index 8917b465..c62c4372 100644 --- a/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnRowEquality_HasValues_Test.java +++ b/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnRowEquality_HasValues_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.api.assertions.impl; diff --git a/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnRowOfChangeExistence_DoesNotExist_Test.java b/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnRowOfChangeExistence_DoesNotExist_Test.java index 171cee19..8bf252f7 100644 --- a/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnRowOfChangeExistence_DoesNotExist_Test.java +++ b/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnRowOfChangeExistence_DoesNotExist_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.api.assertions.impl; diff --git a/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnRowOfChangeExistence_Exists_Test.java b/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnRowOfChangeExistence_Exists_Test.java index 5b4cb70e..3d2ccefc 100644 --- a/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnRowOfChangeExistence_Exists_Test.java +++ b/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnRowOfChangeExistence_Exists_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.api.assertions.impl; diff --git a/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnTableExistence_DoesNotExist_Test.java b/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnTableExistence_DoesNotExist_Test.java index e3291e15..03a28d6a 100644 --- a/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnTableExistence_DoesNotExist_Test.java +++ b/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnTableExistence_DoesNotExist_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.api.assertions.impl; diff --git a/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnTableExistence_Exists_Test.java b/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnTableExistence_Exists_Test.java index bf954c29..454823b3 100644 --- a/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnTableExistence_Exists_Test.java +++ b/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnTableExistence_Exists_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.api.assertions.impl; diff --git a/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnValueChronology_IsAfterOrEqualTo_DateTimeValue_Test.java b/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnValueChronology_IsAfterOrEqualTo_DateTimeValue_Test.java index b2d5e3d9..70bce07b 100644 --- a/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnValueChronology_IsAfterOrEqualTo_DateTimeValue_Test.java +++ b/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnValueChronology_IsAfterOrEqualTo_DateTimeValue_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.api.assertions.impl; diff --git a/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnValueChronology_IsAfterOrEqualTo_DateValue_Test.java b/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnValueChronology_IsAfterOrEqualTo_DateValue_Test.java index adc24bb0..0b96db9d 100644 --- a/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnValueChronology_IsAfterOrEqualTo_DateValue_Test.java +++ b/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnValueChronology_IsAfterOrEqualTo_DateValue_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.api.assertions.impl; diff --git a/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnValueChronology_IsAfterOrEqualTo_String_Test.java b/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnValueChronology_IsAfterOrEqualTo_String_Test.java index 846d61e5..55179ac0 100644 --- a/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnValueChronology_IsAfterOrEqualTo_String_Test.java +++ b/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnValueChronology_IsAfterOrEqualTo_String_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.api.assertions.impl; diff --git a/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnValueChronology_IsAfterOrEqualTo_TimeValue_Test.java b/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnValueChronology_IsAfterOrEqualTo_TimeValue_Test.java index 851058db..4f311d7e 100644 --- a/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnValueChronology_IsAfterOrEqualTo_TimeValue_Test.java +++ b/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnValueChronology_IsAfterOrEqualTo_TimeValue_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.api.assertions.impl; diff --git a/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnValueChronology_IsAfter_DateTimeValue_Test.java b/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnValueChronology_IsAfter_DateTimeValue_Test.java index c80e795f..a8ae9811 100644 --- a/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnValueChronology_IsAfter_DateTimeValue_Test.java +++ b/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnValueChronology_IsAfter_DateTimeValue_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.api.assertions.impl; diff --git a/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnValueChronology_IsAfter_DateValue_Test.java b/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnValueChronology_IsAfter_DateValue_Test.java index 14914071..dc85102d 100644 --- a/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnValueChronology_IsAfter_DateValue_Test.java +++ b/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnValueChronology_IsAfter_DateValue_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.api.assertions.impl; diff --git a/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnValueChronology_IsAfter_String_Test.java b/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnValueChronology_IsAfter_String_Test.java index 3ea805ff..3cd3ec72 100644 --- a/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnValueChronology_IsAfter_String_Test.java +++ b/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnValueChronology_IsAfter_String_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.api.assertions.impl; diff --git a/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnValueChronology_IsAfter_TimeValue_Test.java b/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnValueChronology_IsAfter_TimeValue_Test.java index 02bb62cd..ed4e6df4 100644 --- a/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnValueChronology_IsAfter_TimeValue_Test.java +++ b/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnValueChronology_IsAfter_TimeValue_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.api.assertions.impl; diff --git a/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnValueChronology_IsBeforeOrEqualTo_DateTimeValue_Test.java b/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnValueChronology_IsBeforeOrEqualTo_DateTimeValue_Test.java index 350963e0..642f0e59 100644 --- a/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnValueChronology_IsBeforeOrEqualTo_DateTimeValue_Test.java +++ b/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnValueChronology_IsBeforeOrEqualTo_DateTimeValue_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.api.assertions.impl; diff --git a/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnValueChronology_IsBeforeOrEqualTo_DateValue_Test.java b/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnValueChronology_IsBeforeOrEqualTo_DateValue_Test.java index 6ae62dac..df178e19 100644 --- a/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnValueChronology_IsBeforeOrEqualTo_DateValue_Test.java +++ b/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnValueChronology_IsBeforeOrEqualTo_DateValue_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.api.assertions.impl; diff --git a/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnValueChronology_IsBeforeOrEqualTo_String_Test.java b/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnValueChronology_IsBeforeOrEqualTo_String_Test.java index 92628919..3ca302d3 100644 --- a/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnValueChronology_IsBeforeOrEqualTo_String_Test.java +++ b/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnValueChronology_IsBeforeOrEqualTo_String_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.api.assertions.impl; diff --git a/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnValueChronology_IsBeforeOrEqualTo_TimeValue_Test.java b/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnValueChronology_IsBeforeOrEqualTo_TimeValue_Test.java index b4b3f48f..b8161dc5 100644 --- a/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnValueChronology_IsBeforeOrEqualTo_TimeValue_Test.java +++ b/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnValueChronology_IsBeforeOrEqualTo_TimeValue_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.api.assertions.impl; diff --git a/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnValueChronology_IsBefore_DateTimeValue_Test.java b/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnValueChronology_IsBefore_DateTimeValue_Test.java index 03afd2a0..0128350d 100644 --- a/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnValueChronology_IsBefore_DateTimeValue_Test.java +++ b/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnValueChronology_IsBefore_DateTimeValue_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.api.assertions.impl; diff --git a/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnValueChronology_IsBefore_DateValue_Test.java b/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnValueChronology_IsBefore_DateValue_Test.java index a06a9599..569a404a 100644 --- a/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnValueChronology_IsBefore_DateValue_Test.java +++ b/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnValueChronology_IsBefore_DateValue_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.api.assertions.impl; diff --git a/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnValueChronology_IsBefore_String_Test.java b/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnValueChronology_IsBefore_String_Test.java index f640df29..48be3197 100644 --- a/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnValueChronology_IsBefore_String_Test.java +++ b/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnValueChronology_IsBefore_String_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.api.assertions.impl; diff --git a/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnValueChronology_IsBefore_TimeValue_Test.java b/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnValueChronology_IsBefore_TimeValue_Test.java index a74b3632..10fec466 100644 --- a/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnValueChronology_IsBefore_TimeValue_Test.java +++ b/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnValueChronology_IsBefore_TimeValue_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.api.assertions.impl; diff --git a/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnValueClass_IsOfClass_Test.java b/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnValueClass_IsOfClass_Test.java index 8dfd0f13..358cc4b7 100644 --- a/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnValueClass_IsOfClass_Test.java +++ b/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnValueClass_IsOfClass_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.api.assertions.impl; diff --git a/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnValueCloseness_IsCloseTo_DateTimeValue_DateTimeValue_Test.java b/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnValueCloseness_IsCloseTo_DateTimeValue_DateTimeValue_Test.java index 4789bd67..62f3141f 100644 --- a/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnValueCloseness_IsCloseTo_DateTimeValue_DateTimeValue_Test.java +++ b/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnValueCloseness_IsCloseTo_DateTimeValue_DateTimeValue_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.api.assertions.impl; diff --git a/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnValueCloseness_IsCloseTo_DateTimeValue_DateValue_Test.java b/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnValueCloseness_IsCloseTo_DateTimeValue_DateValue_Test.java index 0826ac18..bd3ed95b 100644 --- a/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnValueCloseness_IsCloseTo_DateTimeValue_DateValue_Test.java +++ b/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnValueCloseness_IsCloseTo_DateTimeValue_DateValue_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.api.assertions.impl; diff --git a/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnValueCloseness_IsCloseTo_DateTimeValue_TimeValue_Test.java b/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnValueCloseness_IsCloseTo_DateTimeValue_TimeValue_Test.java index 52b45541..e315e0dc 100644 --- a/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnValueCloseness_IsCloseTo_DateTimeValue_TimeValue_Test.java +++ b/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnValueCloseness_IsCloseTo_DateTimeValue_TimeValue_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.api.assertions.impl; diff --git a/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnValueCloseness_IsCloseTo_DateValue_DateTimeValue_Test.java b/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnValueCloseness_IsCloseTo_DateValue_DateTimeValue_Test.java index acc9f36d..ba32596d 100644 --- a/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnValueCloseness_IsCloseTo_DateValue_DateTimeValue_Test.java +++ b/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnValueCloseness_IsCloseTo_DateValue_DateTimeValue_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.api.assertions.impl; diff --git a/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnValueCloseness_IsCloseTo_DateValue_DateValue_Test.java b/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnValueCloseness_IsCloseTo_DateValue_DateValue_Test.java index abf1a8f7..46e4114e 100644 --- a/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnValueCloseness_IsCloseTo_DateValue_DateValue_Test.java +++ b/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnValueCloseness_IsCloseTo_DateValue_DateValue_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.api.assertions.impl; diff --git a/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnValueCloseness_IsCloseTo_DateValue_TimeValue_Test.java b/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnValueCloseness_IsCloseTo_DateValue_TimeValue_Test.java index bb2c979e..1ca0ca4b 100644 --- a/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnValueCloseness_IsCloseTo_DateValue_TimeValue_Test.java +++ b/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnValueCloseness_IsCloseTo_DateValue_TimeValue_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.api.assertions.impl; diff --git a/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnValueCloseness_IsCloseTo_Number_Test.java b/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnValueCloseness_IsCloseTo_Number_Test.java index 70cf734d..18f409b3 100644 --- a/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnValueCloseness_IsCloseTo_Number_Test.java +++ b/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnValueCloseness_IsCloseTo_Number_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.api.assertions.impl; diff --git a/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnValueCloseness_IsCloseTo_TimeValue_TimeValue_Test.java b/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnValueCloseness_IsCloseTo_TimeValue_TimeValue_Test.java index fdef2a63..5bf3b400 100644 --- a/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnValueCloseness_IsCloseTo_TimeValue_TimeValue_Test.java +++ b/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnValueCloseness_IsCloseTo_TimeValue_TimeValue_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.api.assertions.impl; diff --git a/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnValueComparison_IsGreaterThanOrEqualTo_Test.java b/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnValueComparison_IsGreaterThanOrEqualTo_Test.java index d3f8880a..08d524aa 100644 --- a/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnValueComparison_IsGreaterThanOrEqualTo_Test.java +++ b/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnValueComparison_IsGreaterThanOrEqualTo_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.api.assertions.impl; diff --git a/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnValueComparison_IsGreaterThan_Test.java b/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnValueComparison_IsGreaterThan_Test.java index ad85a66c..d02f2928 100644 --- a/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnValueComparison_IsGreaterThan_Test.java +++ b/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnValueComparison_IsGreaterThan_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.api.assertions.impl; diff --git a/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnValueComparison_IsLessThanOrEqualTo_Test.java b/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnValueComparison_IsLessThanOrEqualTo_Test.java index 2abf8ef0..5fb6db36 100644 --- a/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnValueComparison_IsLessThanOrEqualTo_Test.java +++ b/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnValueComparison_IsLessThanOrEqualTo_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.api.assertions.impl; diff --git a/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnValueComparison_IsLessThan_Test.java b/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnValueComparison_IsLessThan_Test.java index 8843fffd..58f4579f 100644 --- a/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnValueComparison_IsLessThan_Test.java +++ b/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnValueComparison_IsLessThan_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.api.assertions.impl; diff --git a/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnValueCondition_IsNot_Test.java b/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnValueCondition_IsNot_Test.java index f2b31c3a..09c9bbb1 100644 --- a/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnValueCondition_IsNot_Test.java +++ b/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnValueCondition_IsNot_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.api.assertions.impl; diff --git a/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnValueCondition_Is_Test.java b/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnValueCondition_Is_Test.java index 8c2f5b84..ffd32677 100644 --- a/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnValueCondition_Is_Test.java +++ b/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnValueCondition_Is_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.api.assertions.impl; diff --git a/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnValueEquality_IsEqualTo_Boolean_Test.java b/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnValueEquality_IsEqualTo_Boolean_Test.java index cd82a7d5..493a163f 100644 --- a/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnValueEquality_IsEqualTo_Boolean_Test.java +++ b/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnValueEquality_IsEqualTo_Boolean_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.api.assertions.impl; diff --git a/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnValueEquality_IsEqualTo_Bytes_Test.java b/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnValueEquality_IsEqualTo_Bytes_Test.java index 42d4adde..b52cd1a0 100644 --- a/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnValueEquality_IsEqualTo_Bytes_Test.java +++ b/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnValueEquality_IsEqualTo_Bytes_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.api.assertions.impl; diff --git a/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnValueEquality_IsEqualTo_Character_Test.java b/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnValueEquality_IsEqualTo_Character_Test.java index 63e7d76f..15b845e4 100644 --- a/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnValueEquality_IsEqualTo_Character_Test.java +++ b/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnValueEquality_IsEqualTo_Character_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.api.assertions.impl; diff --git a/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnValueEquality_IsEqualTo_DateTimeValue_Test.java b/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnValueEquality_IsEqualTo_DateTimeValue_Test.java index bee019d8..a2fa3201 100644 --- a/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnValueEquality_IsEqualTo_DateTimeValue_Test.java +++ b/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnValueEquality_IsEqualTo_DateTimeValue_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.api.assertions.impl; diff --git a/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnValueEquality_IsEqualTo_DateValue_Test.java b/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnValueEquality_IsEqualTo_DateValue_Test.java index 188da222..f5ab20b2 100644 --- a/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnValueEquality_IsEqualTo_DateValue_Test.java +++ b/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnValueEquality_IsEqualTo_DateValue_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.api.assertions.impl; diff --git a/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnValueEquality_IsEqualTo_Number_Test.java b/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnValueEquality_IsEqualTo_Number_Test.java index aa31d9ec..3c64c0b4 100644 --- a/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnValueEquality_IsEqualTo_Number_Test.java +++ b/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnValueEquality_IsEqualTo_Number_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.api.assertions.impl; diff --git a/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnValueEquality_IsEqualTo_Object_Test.java b/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnValueEquality_IsEqualTo_Object_Test.java index 4178c198..a242bef7 100644 --- a/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnValueEquality_IsEqualTo_Object_Test.java +++ b/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnValueEquality_IsEqualTo_Object_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.api.assertions.impl; diff --git a/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnValueEquality_IsEqualTo_String_Test.java b/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnValueEquality_IsEqualTo_String_Test.java index 43230d4f..30a46fca 100644 --- a/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnValueEquality_IsEqualTo_String_Test.java +++ b/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnValueEquality_IsEqualTo_String_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.api.assertions.impl; diff --git a/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnValueEquality_IsEqualTo_TimeValue_Test.java b/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnValueEquality_IsEqualTo_TimeValue_Test.java index e2798efd..6c31b8f1 100644 --- a/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnValueEquality_IsEqualTo_TimeValue_Test.java +++ b/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnValueEquality_IsEqualTo_TimeValue_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.api.assertions.impl; diff --git a/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnValueEquality_IsEqualTo_UUID_Test.java b/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnValueEquality_IsEqualTo_UUID_Test.java index d660b5ad..b28dbbee 100644 --- a/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnValueEquality_IsEqualTo_UUID_Test.java +++ b/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnValueEquality_IsEqualTo_UUID_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.api.assertions.impl; diff --git a/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnValueEquality_IsFalse_Test.java b/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnValueEquality_IsFalse_Test.java index 8ec784c1..0f5a2395 100644 --- a/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnValueEquality_IsFalse_Test.java +++ b/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnValueEquality_IsFalse_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.api.assertions.impl; diff --git a/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnValueEquality_IsTrue_Test.java b/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnValueEquality_IsTrue_Test.java index 245ec9ba..951cb66c 100644 --- a/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnValueEquality_IsTrue_Test.java +++ b/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnValueEquality_IsTrue_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.api.assertions.impl; diff --git a/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnValueEquality_IsZero_Test.java b/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnValueEquality_IsZero_Test.java index 7445aef4..2e97994a 100644 --- a/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnValueEquality_IsZero_Test.java +++ b/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnValueEquality_IsZero_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.api.assertions.impl; diff --git a/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnValueInequality_IsNotEqualTo_Boolean_Test.java b/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnValueInequality_IsNotEqualTo_Boolean_Test.java index a7dd3e70..ce1a8275 100644 --- a/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnValueInequality_IsNotEqualTo_Boolean_Test.java +++ b/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnValueInequality_IsNotEqualTo_Boolean_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.api.assertions.impl; diff --git a/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnValueInequality_IsNotEqualTo_Bytes_Test.java b/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnValueInequality_IsNotEqualTo_Bytes_Test.java index b950a1e4..ebb9336d 100644 --- a/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnValueInequality_IsNotEqualTo_Bytes_Test.java +++ b/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnValueInequality_IsNotEqualTo_Bytes_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.api.assertions.impl; diff --git a/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnValueInequality_IsNotEqualTo_Character_Test.java b/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnValueInequality_IsNotEqualTo_Character_Test.java index 9f695b44..45f3c3b2 100644 --- a/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnValueInequality_IsNotEqualTo_Character_Test.java +++ b/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnValueInequality_IsNotEqualTo_Character_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.api.assertions.impl; diff --git a/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnValueInequality_IsNotEqualTo_DateTimeValue_Test.java b/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnValueInequality_IsNotEqualTo_DateTimeValue_Test.java index 46e764ef..91a72252 100644 --- a/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnValueInequality_IsNotEqualTo_DateTimeValue_Test.java +++ b/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnValueInequality_IsNotEqualTo_DateTimeValue_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.api.assertions.impl; diff --git a/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnValueInequality_IsNotEqualTo_DateValue_Test.java b/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnValueInequality_IsNotEqualTo_DateValue_Test.java index 810ea62d..38ca11ef 100644 --- a/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnValueInequality_IsNotEqualTo_DateValue_Test.java +++ b/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnValueInequality_IsNotEqualTo_DateValue_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.api.assertions.impl; diff --git a/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnValueInequality_IsNotEqualTo_Number_Test.java b/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnValueInequality_IsNotEqualTo_Number_Test.java index 73b47405..2e939407 100644 --- a/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnValueInequality_IsNotEqualTo_Number_Test.java +++ b/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnValueInequality_IsNotEqualTo_Number_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.api.assertions.impl; diff --git a/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnValueInequality_IsNotEqualTo_Object_Test.java b/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnValueInequality_IsNotEqualTo_Object_Test.java index 96b9a9bd..201a2e4b 100644 --- a/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnValueInequality_IsNotEqualTo_Object_Test.java +++ b/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnValueInequality_IsNotEqualTo_Object_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.api.assertions.impl; diff --git a/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnValueInequality_IsNotEqualTo_String_Test.java b/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnValueInequality_IsNotEqualTo_String_Test.java index b380b1f3..61357016 100644 --- a/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnValueInequality_IsNotEqualTo_String_Test.java +++ b/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnValueInequality_IsNotEqualTo_String_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.api.assertions.impl; diff --git a/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnValueInequality_IsNotEqualTo_TimeValue_Test.java b/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnValueInequality_IsNotEqualTo_TimeValue_Test.java index 67094c4a..febe07b8 100644 --- a/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnValueInequality_IsNotEqualTo_TimeValue_Test.java +++ b/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnValueInequality_IsNotEqualTo_TimeValue_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.api.assertions.impl; diff --git a/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnValueInequality_IsNotEqualTo_UUID_Test.java b/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnValueInequality_IsNotEqualTo_UUID_Test.java index efaf59f5..d61811cf 100644 --- a/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnValueInequality_IsNotEqualTo_UUID_Test.java +++ b/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnValueInequality_IsNotEqualTo_UUID_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.api.assertions.impl; diff --git a/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnValueInequality_IsNotZero_Test.java b/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnValueInequality_IsNotZero_Test.java index 84b34e8a..4f8dd079 100644 --- a/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnValueInequality_IsNotZero_Test.java +++ b/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnValueInequality_IsNotZero_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.api.assertions.impl; diff --git a/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnValueNullity_IsNotNull_Test.java b/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnValueNullity_IsNotNull_Test.java index 6cdc957d..2b341779 100644 --- a/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnValueNullity_IsNotNull_Test.java +++ b/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnValueNullity_IsNotNull_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.api.assertions.impl; diff --git a/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnValueNullity_IsNull_Test.java b/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnValueNullity_IsNull_Test.java index 129ab5a5..3a2749cb 100644 --- a/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnValueNullity_IsNull_Test.java +++ b/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnValueNullity_IsNull_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.api.assertions.impl; diff --git a/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnValueType_IsBoolean_Test.java b/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnValueType_IsBoolean_Test.java index 27669561..b1f01b85 100644 --- a/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnValueType_IsBoolean_Test.java +++ b/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnValueType_IsBoolean_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.api.assertions.impl; diff --git a/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnValueType_IsBytes_Test.java b/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnValueType_IsBytes_Test.java index 6d299c47..24739de3 100644 --- a/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnValueType_IsBytes_Test.java +++ b/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnValueType_IsBytes_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.api.assertions.impl; diff --git a/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnValueType_IsDateTime_Test.java b/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnValueType_IsDateTime_Test.java index 94adcc30..1d8af7e9 100644 --- a/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnValueType_IsDateTime_Test.java +++ b/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnValueType_IsDateTime_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.api.assertions.impl; diff --git a/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnValueType_IsDate_Test.java b/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnValueType_IsDate_Test.java index d2fc2cea..b1931a8e 100644 --- a/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnValueType_IsDate_Test.java +++ b/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnValueType_IsDate_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.api.assertions.impl; diff --git a/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnValueType_IsNumber_Test.java b/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnValueType_IsNumber_Test.java index 5da84a6a..5a0ee375 100644 --- a/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnValueType_IsNumber_Test.java +++ b/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnValueType_IsNumber_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.api.assertions.impl; diff --git a/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnValueType_IsOfAnyTypeIn_Test.java b/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnValueType_IsOfAnyTypeIn_Test.java index c353705b..d86256f6 100644 --- a/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnValueType_IsOfAnyTypeIn_Test.java +++ b/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnValueType_IsOfAnyTypeIn_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.api.assertions.impl; diff --git a/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnValueType_IsOfType_Test.java b/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnValueType_IsOfType_Test.java index 0d04c946..3565a76b 100644 --- a/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnValueType_IsOfType_Test.java +++ b/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnValueType_IsOfType_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.api.assertions.impl; diff --git a/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnValueType_IsText_Test.java b/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnValueType_IsText_Test.java index d4d7be85..6de39f89 100644 --- a/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnValueType_IsText_Test.java +++ b/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnValueType_IsText_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.api.assertions.impl; diff --git a/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnValueType_IsTime_Test.java b/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnValueType_IsTime_Test.java index d373a1b4..650e3925 100644 --- a/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnValueType_IsTime_Test.java +++ b/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnValueType_IsTime_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.api.assertions.impl; diff --git a/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnValueType_IsUUID_Test.java b/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnValueType_IsUUID_Test.java index afd2b747..34e570ca 100644 --- a/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnValueType_IsUUID_Test.java +++ b/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnValueType_IsUUID_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.api.assertions.impl; diff --git a/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnValuesNullity_HasOnlyNotNullValues_Test.java b/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnValuesNullity_HasOnlyNotNullValues_Test.java index 26995aee..0c4d87d6 100644 --- a/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnValuesNullity_HasOnlyNotNullValues_Test.java +++ b/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnValuesNullity_HasOnlyNotNullValues_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.api.assertions.impl; diff --git a/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnValuesNullity_HasOnlyNullValues_Test.java b/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnValuesNullity_HasOnlyNullValues_Test.java index d3258aa3..f6fbbe52 100644 --- a/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnValuesNullity_HasOnlyNullValues_Test.java +++ b/src/test/java/org/assertj/db/api/assertions/impl/AssertionsOnValuesNullity_HasOnlyNullValues_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.api.assertions.impl; diff --git a/src/test/java/org/assertj/db/api/assertions/impl/constructor/AssertionsOnChangeType_Constructor_Test.java b/src/test/java/org/assertj/db/api/assertions/impl/constructor/AssertionsOnChangeType_Constructor_Test.java index 2f02d778..8bfc07f3 100644 --- a/src/test/java/org/assertj/db/api/assertions/impl/constructor/AssertionsOnChangeType_Constructor_Test.java +++ b/src/test/java/org/assertj/db/api/assertions/impl/constructor/AssertionsOnChangeType_Constructor_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.api.assertions.impl.constructor; diff --git a/src/test/java/org/assertj/db/api/assertions/impl/constructor/AssertionsOnColumnClass_Constructor_Test.java b/src/test/java/org/assertj/db/api/assertions/impl/constructor/AssertionsOnColumnClass_Constructor_Test.java index 759a54b7..58983d39 100644 --- a/src/test/java/org/assertj/db/api/assertions/impl/constructor/AssertionsOnColumnClass_Constructor_Test.java +++ b/src/test/java/org/assertj/db/api/assertions/impl/constructor/AssertionsOnColumnClass_Constructor_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.api.assertions.impl.constructor; diff --git a/src/test/java/org/assertj/db/api/assertions/impl/constructor/AssertionsOnColumnContent_Constructor_Test.java b/src/test/java/org/assertj/db/api/assertions/impl/constructor/AssertionsOnColumnContent_Constructor_Test.java index 8e350e8a..6f0a18df 100644 --- a/src/test/java/org/assertj/db/api/assertions/impl/constructor/AssertionsOnColumnContent_Constructor_Test.java +++ b/src/test/java/org/assertj/db/api/assertions/impl/constructor/AssertionsOnColumnContent_Constructor_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.api.assertions.impl.constructor; diff --git a/src/test/java/org/assertj/db/api/assertions/impl/constructor/AssertionsOnColumnEquality_Constructor_Test.java b/src/test/java/org/assertj/db/api/assertions/impl/constructor/AssertionsOnColumnEquality_Constructor_Test.java index 7ff9d1de..736909ad 100644 --- a/src/test/java/org/assertj/db/api/assertions/impl/constructor/AssertionsOnColumnEquality_Constructor_Test.java +++ b/src/test/java/org/assertj/db/api/assertions/impl/constructor/AssertionsOnColumnEquality_Constructor_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.api.assertions.impl.constructor; diff --git a/src/test/java/org/assertj/db/api/assertions/impl/constructor/AssertionsOnColumnName_Constructor_Test.java b/src/test/java/org/assertj/db/api/assertions/impl/constructor/AssertionsOnColumnName_Constructor_Test.java index 84a39de4..f87cb331 100644 --- a/src/test/java/org/assertj/db/api/assertions/impl/constructor/AssertionsOnColumnName_Constructor_Test.java +++ b/src/test/java/org/assertj/db/api/assertions/impl/constructor/AssertionsOnColumnName_Constructor_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.api.assertions.impl.constructor; diff --git a/src/test/java/org/assertj/db/api/assertions/impl/constructor/AssertionsOnColumnOfChangeClass_Constructor_Test.java b/src/test/java/org/assertj/db/api/assertions/impl/constructor/AssertionsOnColumnOfChangeClass_Constructor_Test.java index 3f131ce8..7a6fe8a8 100644 --- a/src/test/java/org/assertj/db/api/assertions/impl/constructor/AssertionsOnColumnOfChangeClass_Constructor_Test.java +++ b/src/test/java/org/assertj/db/api/assertions/impl/constructor/AssertionsOnColumnOfChangeClass_Constructor_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.api.assertions.impl.constructor; diff --git a/src/test/java/org/assertj/db/api/assertions/impl/constructor/AssertionsOnColumnOfChangeEquality_Constructor_Test.java b/src/test/java/org/assertj/db/api/assertions/impl/constructor/AssertionsOnColumnOfChangeEquality_Constructor_Test.java index 121de13c..ba257ecf 100644 --- a/src/test/java/org/assertj/db/api/assertions/impl/constructor/AssertionsOnColumnOfChangeEquality_Constructor_Test.java +++ b/src/test/java/org/assertj/db/api/assertions/impl/constructor/AssertionsOnColumnOfChangeEquality_Constructor_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.api.assertions.impl.constructor; diff --git a/src/test/java/org/assertj/db/api/assertions/impl/constructor/AssertionsOnColumnOfChangeType_Constructor_Test.java b/src/test/java/org/assertj/db/api/assertions/impl/constructor/AssertionsOnColumnOfChangeType_Constructor_Test.java index abb95f4d..ae447e9a 100644 --- a/src/test/java/org/assertj/db/api/assertions/impl/constructor/AssertionsOnColumnOfChangeType_Constructor_Test.java +++ b/src/test/java/org/assertj/db/api/assertions/impl/constructor/AssertionsOnColumnOfChangeType_Constructor_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.api.assertions.impl.constructor; diff --git a/src/test/java/org/assertj/db/api/assertions/impl/constructor/AssertionsOnColumnType_Constructor_Test.java b/src/test/java/org/assertj/db/api/assertions/impl/constructor/AssertionsOnColumnType_Constructor_Test.java index c0b1a0ae..8306c136 100644 --- a/src/test/java/org/assertj/db/api/assertions/impl/constructor/AssertionsOnColumnType_Constructor_Test.java +++ b/src/test/java/org/assertj/db/api/assertions/impl/constructor/AssertionsOnColumnType_Constructor_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.api.assertions.impl.constructor; diff --git a/src/test/java/org/assertj/db/api/assertions/impl/constructor/AssertionsOnDataType_Constructor_Test.java b/src/test/java/org/assertj/db/api/assertions/impl/constructor/AssertionsOnDataType_Constructor_Test.java index 4c52839f..d785cd20 100644 --- a/src/test/java/org/assertj/db/api/assertions/impl/constructor/AssertionsOnDataType_Constructor_Test.java +++ b/src/test/java/org/assertj/db/api/assertions/impl/constructor/AssertionsOnDataType_Constructor_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.api.assertions.impl.constructor; diff --git a/src/test/java/org/assertj/db/api/assertions/impl/constructor/AssertionsOnModifiedColumn_Constructor_Test.java b/src/test/java/org/assertj/db/api/assertions/impl/constructor/AssertionsOnModifiedColumn_Constructor_Test.java index af90ae21..185dae40 100644 --- a/src/test/java/org/assertj/db/api/assertions/impl/constructor/AssertionsOnModifiedColumn_Constructor_Test.java +++ b/src/test/java/org/assertj/db/api/assertions/impl/constructor/AssertionsOnModifiedColumn_Constructor_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.api.assertions.impl.constructor; diff --git a/src/test/java/org/assertj/db/api/assertions/impl/constructor/AssertionsOnModifiedColumns_Constructor_Test.java b/src/test/java/org/assertj/db/api/assertions/impl/constructor/AssertionsOnModifiedColumns_Constructor_Test.java index 73b0fcd0..f0d0cfd5 100644 --- a/src/test/java/org/assertj/db/api/assertions/impl/constructor/AssertionsOnModifiedColumns_Constructor_Test.java +++ b/src/test/java/org/assertj/db/api/assertions/impl/constructor/AssertionsOnModifiedColumns_Constructor_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.api.assertions.impl.constructor; diff --git a/src/test/java/org/assertj/db/api/assertions/impl/constructor/AssertionsOnNumberOfChanges_Constructor_Test.java b/src/test/java/org/assertj/db/api/assertions/impl/constructor/AssertionsOnNumberOfChanges_Constructor_Test.java index db8f4939..94119298 100644 --- a/src/test/java/org/assertj/db/api/assertions/impl/constructor/AssertionsOnNumberOfChanges_Constructor_Test.java +++ b/src/test/java/org/assertj/db/api/assertions/impl/constructor/AssertionsOnNumberOfChanges_Constructor_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.api.assertions.impl.constructor; diff --git a/src/test/java/org/assertj/db/api/assertions/impl/constructor/AssertionsOnNumberOfColumns_Constructor_Test.java b/src/test/java/org/assertj/db/api/assertions/impl/constructor/AssertionsOnNumberOfColumns_Constructor_Test.java index 5ce9a881..202caa28 100644 --- a/src/test/java/org/assertj/db/api/assertions/impl/constructor/AssertionsOnNumberOfColumns_Constructor_Test.java +++ b/src/test/java/org/assertj/db/api/assertions/impl/constructor/AssertionsOnNumberOfColumns_Constructor_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.api.assertions.impl.constructor; diff --git a/src/test/java/org/assertj/db/api/assertions/impl/constructor/AssertionsOnNumberOfRows_Constructor_Test.java b/src/test/java/org/assertj/db/api/assertions/impl/constructor/AssertionsOnNumberOfRows_Constructor_Test.java index 1b589f00..87108c14 100644 --- a/src/test/java/org/assertj/db/api/assertions/impl/constructor/AssertionsOnNumberOfRows_Constructor_Test.java +++ b/src/test/java/org/assertj/db/api/assertions/impl/constructor/AssertionsOnNumberOfRows_Constructor_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.api.assertions.impl.constructor; diff --git a/src/test/java/org/assertj/db/api/assertions/impl/constructor/AssertionsOnPrimaryKey_Constructor_Test.java b/src/test/java/org/assertj/db/api/assertions/impl/constructor/AssertionsOnPrimaryKey_Constructor_Test.java index cc4d6d2c..a7cfcbba 100644 --- a/src/test/java/org/assertj/db/api/assertions/impl/constructor/AssertionsOnPrimaryKey_Constructor_Test.java +++ b/src/test/java/org/assertj/db/api/assertions/impl/constructor/AssertionsOnPrimaryKey_Constructor_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.api.assertions.impl.constructor; diff --git a/src/test/java/org/assertj/db/api/assertions/impl/constructor/AssertionsOnRowEquality_Constructor_Test.java b/src/test/java/org/assertj/db/api/assertions/impl/constructor/AssertionsOnRowEquality_Constructor_Test.java index d8a0518e..a2a8cc04 100644 --- a/src/test/java/org/assertj/db/api/assertions/impl/constructor/AssertionsOnRowEquality_Constructor_Test.java +++ b/src/test/java/org/assertj/db/api/assertions/impl/constructor/AssertionsOnRowEquality_Constructor_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.api.assertions.impl.constructor; diff --git a/src/test/java/org/assertj/db/api/assertions/impl/constructor/AssertionsOnRowOfChangeExistence_Constructor_Test.java b/src/test/java/org/assertj/db/api/assertions/impl/constructor/AssertionsOnRowOfChangeExistence_Constructor_Test.java index 3f4f7491..23a2b7e4 100644 --- a/src/test/java/org/assertj/db/api/assertions/impl/constructor/AssertionsOnRowOfChangeExistence_Constructor_Test.java +++ b/src/test/java/org/assertj/db/api/assertions/impl/constructor/AssertionsOnRowOfChangeExistence_Constructor_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.api.assertions.impl.constructor; diff --git a/src/test/java/org/assertj/db/api/assertions/impl/constructor/AssertionsOnValueChronology_Constructor_Test.java b/src/test/java/org/assertj/db/api/assertions/impl/constructor/AssertionsOnValueChronology_Constructor_Test.java index 2b6cdb13..13817810 100644 --- a/src/test/java/org/assertj/db/api/assertions/impl/constructor/AssertionsOnValueChronology_Constructor_Test.java +++ b/src/test/java/org/assertj/db/api/assertions/impl/constructor/AssertionsOnValueChronology_Constructor_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.api.assertions.impl.constructor; diff --git a/src/test/java/org/assertj/db/api/assertions/impl/constructor/AssertionsOnValueClass_Constructor_Test.java b/src/test/java/org/assertj/db/api/assertions/impl/constructor/AssertionsOnValueClass_Constructor_Test.java index d36627e9..2897f922 100644 --- a/src/test/java/org/assertj/db/api/assertions/impl/constructor/AssertionsOnValueClass_Constructor_Test.java +++ b/src/test/java/org/assertj/db/api/assertions/impl/constructor/AssertionsOnValueClass_Constructor_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.api.assertions.impl.constructor; diff --git a/src/test/java/org/assertj/db/api/assertions/impl/constructor/AssertionsOnValueCloseness_Constructor_Test.java b/src/test/java/org/assertj/db/api/assertions/impl/constructor/AssertionsOnValueCloseness_Constructor_Test.java index 11859412..e8ec12fc 100644 --- a/src/test/java/org/assertj/db/api/assertions/impl/constructor/AssertionsOnValueCloseness_Constructor_Test.java +++ b/src/test/java/org/assertj/db/api/assertions/impl/constructor/AssertionsOnValueCloseness_Constructor_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.api.assertions.impl.constructor; diff --git a/src/test/java/org/assertj/db/api/assertions/impl/constructor/AssertionsOnValueComparison_Constructor_Test.java b/src/test/java/org/assertj/db/api/assertions/impl/constructor/AssertionsOnValueComparison_Constructor_Test.java index 1a1614e0..29e193b9 100644 --- a/src/test/java/org/assertj/db/api/assertions/impl/constructor/AssertionsOnValueComparison_Constructor_Test.java +++ b/src/test/java/org/assertj/db/api/assertions/impl/constructor/AssertionsOnValueComparison_Constructor_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.api.assertions.impl.constructor; diff --git a/src/test/java/org/assertj/db/api/assertions/impl/constructor/AssertionsOnValueEquality_Constructor_Test.java b/src/test/java/org/assertj/db/api/assertions/impl/constructor/AssertionsOnValueEquality_Constructor_Test.java index 95c15195..fb65079d 100644 --- a/src/test/java/org/assertj/db/api/assertions/impl/constructor/AssertionsOnValueEquality_Constructor_Test.java +++ b/src/test/java/org/assertj/db/api/assertions/impl/constructor/AssertionsOnValueEquality_Constructor_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.api.assertions.impl.constructor; diff --git a/src/test/java/org/assertj/db/api/assertions/impl/constructor/AssertionsOnValueNonEquality_Constructor_Test.java b/src/test/java/org/assertj/db/api/assertions/impl/constructor/AssertionsOnValueNonEquality_Constructor_Test.java index dd071ef0..bf938d4e 100644 --- a/src/test/java/org/assertj/db/api/assertions/impl/constructor/AssertionsOnValueNonEquality_Constructor_Test.java +++ b/src/test/java/org/assertj/db/api/assertions/impl/constructor/AssertionsOnValueNonEquality_Constructor_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.api.assertions.impl.constructor; diff --git a/src/test/java/org/assertj/db/api/assertions/impl/constructor/AssertionsOnValueNullity_Constructor_Test.java b/src/test/java/org/assertj/db/api/assertions/impl/constructor/AssertionsOnValueNullity_Constructor_Test.java index fba9f4db..d63864cd 100644 --- a/src/test/java/org/assertj/db/api/assertions/impl/constructor/AssertionsOnValueNullity_Constructor_Test.java +++ b/src/test/java/org/assertj/db/api/assertions/impl/constructor/AssertionsOnValueNullity_Constructor_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.api.assertions.impl.constructor; diff --git a/src/test/java/org/assertj/db/api/assertions/impl/constructor/AssertionsOnValueType_Constructor_Test.java b/src/test/java/org/assertj/db/api/assertions/impl/constructor/AssertionsOnValueType_Constructor_Test.java index 55d03e34..edb4b2c5 100644 --- a/src/test/java/org/assertj/db/api/assertions/impl/constructor/AssertionsOnValueType_Constructor_Test.java +++ b/src/test/java/org/assertj/db/api/assertions/impl/constructor/AssertionsOnValueType_Constructor_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.api.assertions.impl.constructor; diff --git a/src/test/java/org/assertj/db/api/assertions/impl/constructor/AssertionsOnValuesNullity_Constructor_Test.java b/src/test/java/org/assertj/db/api/assertions/impl/constructor/AssertionsOnValuesNullity_Constructor_Test.java index bbf924df..c0b3c5e0 100644 --- a/src/test/java/org/assertj/db/api/assertions/impl/constructor/AssertionsOnValuesNullity_Constructor_Test.java +++ b/src/test/java/org/assertj/db/api/assertions/impl/constructor/AssertionsOnValuesNullity_Constructor_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.api.assertions.impl.constructor; diff --git a/src/test/java/org/assertj/db/common/AbstractTest.java b/src/test/java/org/assertj/db/common/AbstractTest.java index f545d9c3..35311ff6 100644 --- a/src/test/java/org/assertj/db/common/AbstractTest.java +++ b/src/test/java/org/assertj/db/common/AbstractTest.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.common; diff --git a/src/test/java/org/assertj/db/common/DefaultConnection.java b/src/test/java/org/assertj/db/common/DefaultConnection.java index d433df79..da9cc680 100644 --- a/src/test/java/org/assertj/db/common/DefaultConnection.java +++ b/src/test/java/org/assertj/db/common/DefaultConnection.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.common; diff --git a/src/test/java/org/assertj/db/common/DefaultDataSource.java b/src/test/java/org/assertj/db/common/DefaultDataSource.java index b7a5890b..b2cc6c2f 100644 --- a/src/test/java/org/assertj/db/common/DefaultDataSource.java +++ b/src/test/java/org/assertj/db/common/DefaultDataSource.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.common; diff --git a/src/test/java/org/assertj/db/common/DefaultPreparedStatement.java b/src/test/java/org/assertj/db/common/DefaultPreparedStatement.java index 2cab2ebc..0ef05768 100644 --- a/src/test/java/org/assertj/db/common/DefaultPreparedStatement.java +++ b/src/test/java/org/assertj/db/common/DefaultPreparedStatement.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.common; diff --git a/src/test/java/org/assertj/db/common/DefaultResultSet.java b/src/test/java/org/assertj/db/common/DefaultResultSet.java index 59b99da1..69944a5f 100644 --- a/src/test/java/org/assertj/db/common/DefaultResultSet.java +++ b/src/test/java/org/assertj/db/common/DefaultResultSet.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.common; diff --git a/src/test/java/org/assertj/db/common/DefaultStatement.java b/src/test/java/org/assertj/db/common/DefaultStatement.java index af4f2f30..0757bd01 100644 --- a/src/test/java/org/assertj/db/common/DefaultStatement.java +++ b/src/test/java/org/assertj/db/common/DefaultStatement.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.common; diff --git a/src/test/java/org/assertj/db/common/NeedReload.java b/src/test/java/org/assertj/db/common/NeedReload.java index b36b6063..ece46a6e 100644 --- a/src/test/java/org/assertj/db/common/NeedReload.java +++ b/src/test/java/org/assertj/db/common/NeedReload.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.common; diff --git a/src/test/java/org/assertj/db/configuration/TestsConfiguration.java b/src/test/java/org/assertj/db/configuration/TestsConfiguration.java index 45c81394..fe49198b 100644 --- a/src/test/java/org/assertj/db/configuration/TestsConfiguration.java +++ b/src/test/java/org/assertj/db/configuration/TestsConfiguration.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.configuration; diff --git a/src/test/java/org/assertj/db/database/AbstractDatabaseTest.java b/src/test/java/org/assertj/db/database/AbstractDatabaseTest.java index 8126d8e7..280308f9 100644 --- a/src/test/java/org/assertj/db/database/AbstractDatabaseTest.java +++ b/src/test/java/org/assertj/db/database/AbstractDatabaseTest.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.database; diff --git a/src/test/java/org/assertj/db/database/derby/DerbyConfiguration.java b/src/test/java/org/assertj/db/database/derby/DerbyConfiguration.java index 800cb7d2..53370af5 100644 --- a/src/test/java/org/assertj/db/database/derby/DerbyConfiguration.java +++ b/src/test/java/org/assertj/db/database/derby/DerbyConfiguration.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.database.derby; diff --git a/src/test/java/org/assertj/db/database/h2/AbstractH2Test.java b/src/test/java/org/assertj/db/database/h2/AbstractH2Test.java index 5c1751a4..99a42d43 100644 --- a/src/test/java/org/assertj/db/database/h2/AbstractH2Test.java +++ b/src/test/java/org/assertj/db/database/h2/AbstractH2Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.database.h2; diff --git a/src/test/java/org/assertj/db/database/h2/AbstractReservedH2Test.java b/src/test/java/org/assertj/db/database/h2/AbstractReservedH2Test.java index da465659..f5bee979 100644 --- a/src/test/java/org/assertj/db/database/h2/AbstractReservedH2Test.java +++ b/src/test/java/org/assertj/db/database/h2/AbstractReservedH2Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.database.h2; diff --git a/src/test/java/org/assertj/db/database/h2/H2Configuration.java b/src/test/java/org/assertj/db/database/h2/H2Configuration.java index 0c171f7f..15ad679d 100644 --- a/src/test/java/org/assertj/db/database/h2/H2Configuration.java +++ b/src/test/java/org/assertj/db/database/h2/H2Configuration.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.database.h2; diff --git a/src/test/java/org/assertj/db/database/h2/H2DataBase_Source_DDD_Test.java b/src/test/java/org/assertj/db/database/h2/H2DataBase_Source_DDD_Test.java index 92898f14..87986d60 100644 --- a/src/test/java/org/assertj/db/database/h2/H2DataBase_Source_DDD_Test.java +++ b/src/test/java/org/assertj/db/database/h2/H2DataBase_Source_DDD_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.database.h2; diff --git a/src/test/java/org/assertj/db/database/h2/H2DataBase_Test.java b/src/test/java/org/assertj/db/database/h2/H2DataBase_Test.java index 8f820ff1..a8c6b7c2 100644 --- a/src/test/java/org/assertj/db/database/h2/H2DataBase_Test.java +++ b/src/test/java/org/assertj/db/database/h2/H2DataBase_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.database.h2; diff --git a/src/test/java/org/assertj/db/database/h2/H2Database_DataSource_DDD_Test.java b/src/test/java/org/assertj/db/database/h2/H2Database_DataSource_DDD_Test.java index ec0995d3..842dc2ec 100644 --- a/src/test/java/org/assertj/db/database/h2/H2Database_DataSource_DDD_Test.java +++ b/src/test/java/org/assertj/db/database/h2/H2Database_DataSource_DDD_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.database.h2; diff --git a/src/test/java/org/assertj/db/database/h2/H2Database_DataSource_NSNSNS_Test.java b/src/test/java/org/assertj/db/database/h2/H2Database_DataSource_NSNSNS_Test.java index fc068d9a..dc144504 100644 --- a/src/test/java/org/assertj/db/database/h2/H2Database_DataSource_NSNSNS_Test.java +++ b/src/test/java/org/assertj/db/database/h2/H2Database_DataSource_NSNSNS_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.database.h2; diff --git a/src/test/java/org/assertj/db/database/h2/H2Database_DataSource_UIUIUI_Test.java b/src/test/java/org/assertj/db/database/h2/H2Database_DataSource_UIUIUI_Test.java index 71874e95..cfa9a540 100644 --- a/src/test/java/org/assertj/db/database/h2/H2Database_DataSource_UIUIUI_Test.java +++ b/src/test/java/org/assertj/db/database/h2/H2Database_DataSource_UIUIUI_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.database.h2; diff --git a/src/test/java/org/assertj/db/database/h2/H2Database_Source_NSNSNS_Test.java b/src/test/java/org/assertj/db/database/h2/H2Database_Source_NSNSNS_Test.java index 5a4ee56c..25f7a8cf 100644 --- a/src/test/java/org/assertj/db/database/h2/H2Database_Source_NSNSNS_Test.java +++ b/src/test/java/org/assertj/db/database/h2/H2Database_Source_NSNSNS_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.database.h2; diff --git a/src/test/java/org/assertj/db/database/h2/H2Database_Source_UIUIUI_Test.java b/src/test/java/org/assertj/db/database/h2/H2Database_Source_UIUIUI_Test.java index 79fd0173..5058eb87 100644 --- a/src/test/java/org/assertj/db/database/h2/H2Database_Source_UIUIUI_Test.java +++ b/src/test/java/org/assertj/db/database/h2/H2Database_Source_UIUIUI_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.database.h2; diff --git a/src/test/java/org/assertj/db/database/h2/ReservedH2Configuration.java b/src/test/java/org/assertj/db/database/h2/ReservedH2Configuration.java index bec85aa2..b5992b33 100644 --- a/src/test/java/org/assertj/db/database/h2/ReservedH2Configuration.java +++ b/src/test/java/org/assertj/db/database/h2/ReservedH2Configuration.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.database.h2; diff --git a/src/test/java/org/assertj/db/database/h2/ReservedH2DataBase_Test.java b/src/test/java/org/assertj/db/database/h2/ReservedH2DataBase_Test.java index 9380199d..e287723a 100644 --- a/src/test/java/org/assertj/db/database/h2/ReservedH2DataBase_Test.java +++ b/src/test/java/org/assertj/db/database/h2/ReservedH2DataBase_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.database.h2; diff --git a/src/test/java/org/assertj/db/database/h2/ReservedH2Database_DataSource_DDD_Test.java b/src/test/java/org/assertj/db/database/h2/ReservedH2Database_DataSource_DDD_Test.java index a0506b0f..6a4e6ce8 100644 --- a/src/test/java/org/assertj/db/database/h2/ReservedH2Database_DataSource_DDD_Test.java +++ b/src/test/java/org/assertj/db/database/h2/ReservedH2Database_DataSource_DDD_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.database.h2; diff --git a/src/test/java/org/assertj/db/database/h2/ReservedH2Database_DataSource_NSNSNS_Test.java b/src/test/java/org/assertj/db/database/h2/ReservedH2Database_DataSource_NSNSNS_Test.java index 0b932d57..77dd6a01 100644 --- a/src/test/java/org/assertj/db/database/h2/ReservedH2Database_DataSource_NSNSNS_Test.java +++ b/src/test/java/org/assertj/db/database/h2/ReservedH2Database_DataSource_NSNSNS_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.database.h2; diff --git a/src/test/java/org/assertj/db/database/h2/ReservedH2Database_DataSource_UIUIUI_Test.java b/src/test/java/org/assertj/db/database/h2/ReservedH2Database_DataSource_UIUIUI_Test.java index c181ec00..9b1efb8a 100644 --- a/src/test/java/org/assertj/db/database/h2/ReservedH2Database_DataSource_UIUIUI_Test.java +++ b/src/test/java/org/assertj/db/database/h2/ReservedH2Database_DataSource_UIUIUI_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.database.h2; diff --git a/src/test/java/org/assertj/db/database/h2/ReservedH2Database_Source_DDD_Test.java b/src/test/java/org/assertj/db/database/h2/ReservedH2Database_Source_DDD_Test.java index 1093efff..8b4cb575 100644 --- a/src/test/java/org/assertj/db/database/h2/ReservedH2Database_Source_DDD_Test.java +++ b/src/test/java/org/assertj/db/database/h2/ReservedH2Database_Source_DDD_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.database.h2; diff --git a/src/test/java/org/assertj/db/database/h2/ReservedH2Database_Source_NSNSNS_Test.java b/src/test/java/org/assertj/db/database/h2/ReservedH2Database_Source_NSNSNS_Test.java index 1d92cc9a..c52a7390 100644 --- a/src/test/java/org/assertj/db/database/h2/ReservedH2Database_Source_NSNSNS_Test.java +++ b/src/test/java/org/assertj/db/database/h2/ReservedH2Database_Source_NSNSNS_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.database.h2; diff --git a/src/test/java/org/assertj/db/database/h2/ReservedH2Database_Source_UIUIUI_Test.java b/src/test/java/org/assertj/db/database/h2/ReservedH2Database_Source_UIUIUI_Test.java index 52e0ba9a..985918cf 100644 --- a/src/test/java/org/assertj/db/database/h2/ReservedH2Database_Source_UIUIUI_Test.java +++ b/src/test/java/org/assertj/db/database/h2/ReservedH2Database_Source_UIUIUI_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.database.h2; diff --git a/src/test/java/org/assertj/db/database/hsqldb/AbstractHsqldbTest.java b/src/test/java/org/assertj/db/database/hsqldb/AbstractHsqldbTest.java index a2c0af99..02b24f20 100644 --- a/src/test/java/org/assertj/db/database/hsqldb/AbstractHsqldbTest.java +++ b/src/test/java/org/assertj/db/database/hsqldb/AbstractHsqldbTest.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.database.hsqldb; diff --git a/src/test/java/org/assertj/db/database/hsqldb/HsqldbConfiguration.java b/src/test/java/org/assertj/db/database/hsqldb/HsqldbConfiguration.java index 38f9091c..1b9f6465 100644 --- a/src/test/java/org/assertj/db/database/hsqldb/HsqldbConfiguration.java +++ b/src/test/java/org/assertj/db/database/hsqldb/HsqldbConfiguration.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.database.hsqldb; diff --git a/src/test/java/org/assertj/db/database/hsqldb/HsqldbDataBase_Test.java b/src/test/java/org/assertj/db/database/hsqldb/HsqldbDataBase_Test.java index 234ff17d..3c0069ae 100644 --- a/src/test/java/org/assertj/db/database/hsqldb/HsqldbDataBase_Test.java +++ b/src/test/java/org/assertj/db/database/hsqldb/HsqldbDataBase_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.database.hsqldb; diff --git a/src/test/java/org/assertj/db/database/hsqldb/HsqldbDatabase_Source_UIUIUI_Test.java b/src/test/java/org/assertj/db/database/hsqldb/HsqldbDatabase_Source_UIUIUI_Test.java index b29ccaa0..affe7ca4 100644 --- a/src/test/java/org/assertj/db/database/hsqldb/HsqldbDatabase_Source_UIUIUI_Test.java +++ b/src/test/java/org/assertj/db/database/hsqldb/HsqldbDatabase_Source_UIUIUI_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.database.hsqldb; diff --git a/src/test/java/org/assertj/db/database/sqlite/AbstractSqliteTest.java b/src/test/java/org/assertj/db/database/sqlite/AbstractSqliteTest.java index 9507ab69..cf0cd66a 100644 --- a/src/test/java/org/assertj/db/database/sqlite/AbstractSqliteTest.java +++ b/src/test/java/org/assertj/db/database/sqlite/AbstractSqliteTest.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.database.sqlite; diff --git a/src/test/java/org/assertj/db/database/sqlite/SqliteConfiguration.java b/src/test/java/org/assertj/db/database/sqlite/SqliteConfiguration.java index 0f23ace0..90c2fb6e 100644 --- a/src/test/java/org/assertj/db/database/sqlite/SqliteConfiguration.java +++ b/src/test/java/org/assertj/db/database/sqlite/SqliteConfiguration.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.database.sqlite; diff --git a/src/test/java/org/assertj/db/database/sqlite/SqliteDataBase_Test.java b/src/test/java/org/assertj/db/database/sqlite/SqliteDataBase_Test.java index ac60c2af..61ae7416 100644 --- a/src/test/java/org/assertj/db/database/sqlite/SqliteDataBase_Test.java +++ b/src/test/java/org/assertj/db/database/sqlite/SqliteDataBase_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.database.sqlite; diff --git a/src/test/java/org/assertj/db/database/sqlite/SqliteDatabase_DataSource_DDD_Test.java b/src/test/java/org/assertj/db/database/sqlite/SqliteDatabase_DataSource_DDD_Test.java index 84ba7c91..ba851626 100644 --- a/src/test/java/org/assertj/db/database/sqlite/SqliteDatabase_DataSource_DDD_Test.java +++ b/src/test/java/org/assertj/db/database/sqlite/SqliteDatabase_DataSource_DDD_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.database.sqlite; diff --git a/src/test/java/org/assertj/db/database/sqlite/SqliteDatabase_DataSource_NSNSNS_Test.java b/src/test/java/org/assertj/db/database/sqlite/SqliteDatabase_DataSource_NSNSNS_Test.java index 5ea8c00f..25f6e86e 100644 --- a/src/test/java/org/assertj/db/database/sqlite/SqliteDatabase_DataSource_NSNSNS_Test.java +++ b/src/test/java/org/assertj/db/database/sqlite/SqliteDatabase_DataSource_NSNSNS_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.database.sqlite; diff --git a/src/test/java/org/assertj/db/database/sqlite/SqliteDatabase_DataSource_UIUIUI_Test.java b/src/test/java/org/assertj/db/database/sqlite/SqliteDatabase_DataSource_UIUIUI_Test.java index 159ae254..33cb8152 100644 --- a/src/test/java/org/assertj/db/database/sqlite/SqliteDatabase_DataSource_UIUIUI_Test.java +++ b/src/test/java/org/assertj/db/database/sqlite/SqliteDatabase_DataSource_UIUIUI_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.database.sqlite; diff --git a/src/test/java/org/assertj/db/database/sqlite/SqliteDatabase_Source_DDD_Test.java b/src/test/java/org/assertj/db/database/sqlite/SqliteDatabase_Source_DDD_Test.java index c9c360f2..562129c7 100644 --- a/src/test/java/org/assertj/db/database/sqlite/SqliteDatabase_Source_DDD_Test.java +++ b/src/test/java/org/assertj/db/database/sqlite/SqliteDatabase_Source_DDD_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.database.sqlite; diff --git a/src/test/java/org/assertj/db/database/sqlite/SqliteDatabase_Source_NSNSNS_Test.java b/src/test/java/org/assertj/db/database/sqlite/SqliteDatabase_Source_NSNSNS_Test.java index a4a0d57d..a12058d7 100644 --- a/src/test/java/org/assertj/db/database/sqlite/SqliteDatabase_Source_NSNSNS_Test.java +++ b/src/test/java/org/assertj/db/database/sqlite/SqliteDatabase_Source_NSNSNS_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.database.sqlite; diff --git a/src/test/java/org/assertj/db/database/sqlite/SqliteDatabase_Source_UIUIUI_Test.java b/src/test/java/org/assertj/db/database/sqlite/SqliteDatabase_Source_UIUIUI_Test.java index 0ab124a6..1e7cdd42 100644 --- a/src/test/java/org/assertj/db/database/sqlite/SqliteDatabase_Source_UIUIUI_Test.java +++ b/src/test/java/org/assertj/db/database/sqlite/SqliteDatabase_Source_UIUIUI_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.database.sqlite; diff --git a/src/test/java/org/assertj/db/navigation/InstantiationError_Test.java b/src/test/java/org/assertj/db/navigation/InstantiationError_Test.java index 36425f25..b21ef145 100644 --- a/src/test/java/org/assertj/db/navigation/InstantiationError_Test.java +++ b/src/test/java/org/assertj/db/navigation/InstantiationError_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.navigation; diff --git a/src/test/java/org/assertj/db/navigation/ReturnToOrigin_Test.java b/src/test/java/org/assertj/db/navigation/ReturnToOrigin_Test.java index 57fbcc1d..6fb77def 100644 --- a/src/test/java/org/assertj/db/navigation/ReturnToOrigin_Test.java +++ b/src/test/java/org/assertj/db/navigation/ReturnToOrigin_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.navigation; diff --git a/src/test/java/org/assertj/db/navigation/ToChange_ChangeOfCreationOnTable_Integer_Test.java b/src/test/java/org/assertj/db/navigation/ToChange_ChangeOfCreationOnTable_Integer_Test.java index 76e58b42..2f1a89f4 100644 --- a/src/test/java/org/assertj/db/navigation/ToChange_ChangeOfCreationOnTable_Integer_Test.java +++ b/src/test/java/org/assertj/db/navigation/ToChange_ChangeOfCreationOnTable_Integer_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.navigation; diff --git a/src/test/java/org/assertj/db/navigation/ToChange_ChangeOfCreationOnTable_Test.java b/src/test/java/org/assertj/db/navigation/ToChange_ChangeOfCreationOnTable_Test.java index 134b98bb..405d3f0a 100644 --- a/src/test/java/org/assertj/db/navigation/ToChange_ChangeOfCreationOnTable_Test.java +++ b/src/test/java/org/assertj/db/navigation/ToChange_ChangeOfCreationOnTable_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.navigation; diff --git a/src/test/java/org/assertj/db/navigation/ToChange_ChangeOfCreation_Integer_Test.java b/src/test/java/org/assertj/db/navigation/ToChange_ChangeOfCreation_Integer_Test.java index 4c92c3fa..ee922ff4 100644 --- a/src/test/java/org/assertj/db/navigation/ToChange_ChangeOfCreation_Integer_Test.java +++ b/src/test/java/org/assertj/db/navigation/ToChange_ChangeOfCreation_Integer_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.navigation; diff --git a/src/test/java/org/assertj/db/navigation/ToChange_ChangeOfCreation_Test.java b/src/test/java/org/assertj/db/navigation/ToChange_ChangeOfCreation_Test.java index 756ab0bf..fffa3346 100644 --- a/src/test/java/org/assertj/db/navigation/ToChange_ChangeOfCreation_Test.java +++ b/src/test/java/org/assertj/db/navigation/ToChange_ChangeOfCreation_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.navigation; diff --git a/src/test/java/org/assertj/db/navigation/ToChange_ChangeOfDeletionOnTable_Integer_Test.java b/src/test/java/org/assertj/db/navigation/ToChange_ChangeOfDeletionOnTable_Integer_Test.java index 3b2fbd11..2d8937a3 100644 --- a/src/test/java/org/assertj/db/navigation/ToChange_ChangeOfDeletionOnTable_Integer_Test.java +++ b/src/test/java/org/assertj/db/navigation/ToChange_ChangeOfDeletionOnTable_Integer_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.navigation; diff --git a/src/test/java/org/assertj/db/navigation/ToChange_ChangeOfDeletionOnTable_Test.java b/src/test/java/org/assertj/db/navigation/ToChange_ChangeOfDeletionOnTable_Test.java index 940eae68..2a420ff3 100644 --- a/src/test/java/org/assertj/db/navigation/ToChange_ChangeOfDeletionOnTable_Test.java +++ b/src/test/java/org/assertj/db/navigation/ToChange_ChangeOfDeletionOnTable_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.navigation; diff --git a/src/test/java/org/assertj/db/navigation/ToChange_ChangeOfDeletion_Integer_Test.java b/src/test/java/org/assertj/db/navigation/ToChange_ChangeOfDeletion_Integer_Test.java index 4d92a6b9..baca8a73 100644 --- a/src/test/java/org/assertj/db/navigation/ToChange_ChangeOfDeletion_Integer_Test.java +++ b/src/test/java/org/assertj/db/navigation/ToChange_ChangeOfDeletion_Integer_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.navigation; diff --git a/src/test/java/org/assertj/db/navigation/ToChange_ChangeOfDeletion_Test.java b/src/test/java/org/assertj/db/navigation/ToChange_ChangeOfDeletion_Test.java index d6d913f3..4f25fd51 100644 --- a/src/test/java/org/assertj/db/navigation/ToChange_ChangeOfDeletion_Test.java +++ b/src/test/java/org/assertj/db/navigation/ToChange_ChangeOfDeletion_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.navigation; diff --git a/src/test/java/org/assertj/db/navigation/ToChange_ChangeOfModificationOnTable_Integer_Test.java b/src/test/java/org/assertj/db/navigation/ToChange_ChangeOfModificationOnTable_Integer_Test.java index fe666e10..337e7d93 100644 --- a/src/test/java/org/assertj/db/navigation/ToChange_ChangeOfModificationOnTable_Integer_Test.java +++ b/src/test/java/org/assertj/db/navigation/ToChange_ChangeOfModificationOnTable_Integer_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.navigation; diff --git a/src/test/java/org/assertj/db/navigation/ToChange_ChangeOfModificationOnTable_Test.java b/src/test/java/org/assertj/db/navigation/ToChange_ChangeOfModificationOnTable_Test.java index 22d599f0..8dde6f29 100644 --- a/src/test/java/org/assertj/db/navigation/ToChange_ChangeOfModificationOnTable_Test.java +++ b/src/test/java/org/assertj/db/navigation/ToChange_ChangeOfModificationOnTable_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.navigation; diff --git a/src/test/java/org/assertj/db/navigation/ToChange_ChangeOfModification_Integer_Test.java b/src/test/java/org/assertj/db/navigation/ToChange_ChangeOfModification_Integer_Test.java index 235477aa..b65396b9 100644 --- a/src/test/java/org/assertj/db/navigation/ToChange_ChangeOfModification_Integer_Test.java +++ b/src/test/java/org/assertj/db/navigation/ToChange_ChangeOfModification_Integer_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.navigation; diff --git a/src/test/java/org/assertj/db/navigation/ToChange_ChangeOfModification_Test.java b/src/test/java/org/assertj/db/navigation/ToChange_ChangeOfModification_Test.java index 6c314d64..e53a237e 100644 --- a/src/test/java/org/assertj/db/navigation/ToChange_ChangeOfModification_Test.java +++ b/src/test/java/org/assertj/db/navigation/ToChange_ChangeOfModification_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.navigation; diff --git a/src/test/java/org/assertj/db/navigation/ToChange_ChangeOnTableWithPks_Test.java b/src/test/java/org/assertj/db/navigation/ToChange_ChangeOnTableWithPks_Test.java index b9cf32ad..cddbd585 100644 --- a/src/test/java/org/assertj/db/navigation/ToChange_ChangeOnTableWithPks_Test.java +++ b/src/test/java/org/assertj/db/navigation/ToChange_ChangeOnTableWithPks_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.navigation; diff --git a/src/test/java/org/assertj/db/navigation/ToChange_ChangeOnTable_Integer_Test.java b/src/test/java/org/assertj/db/navigation/ToChange_ChangeOnTable_Integer_Test.java index ed9f60ee..706290a1 100644 --- a/src/test/java/org/assertj/db/navigation/ToChange_ChangeOnTable_Integer_Test.java +++ b/src/test/java/org/assertj/db/navigation/ToChange_ChangeOnTable_Integer_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.navigation; diff --git a/src/test/java/org/assertj/db/navigation/ToChange_ChangeOnTable_Test.java b/src/test/java/org/assertj/db/navigation/ToChange_ChangeOnTable_Test.java index ced9d523..83832aa2 100644 --- a/src/test/java/org/assertj/db/navigation/ToChange_ChangeOnTable_Test.java +++ b/src/test/java/org/assertj/db/navigation/ToChange_ChangeOnTable_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.navigation; diff --git a/src/test/java/org/assertj/db/navigation/ToChange_Change_Integer_Test.java b/src/test/java/org/assertj/db/navigation/ToChange_Change_Integer_Test.java index e4e4ba84..0c45f971 100644 --- a/src/test/java/org/assertj/db/navigation/ToChange_Change_Integer_Test.java +++ b/src/test/java/org/assertj/db/navigation/ToChange_Change_Integer_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.navigation; diff --git a/src/test/java/org/assertj/db/navigation/ToChange_Change_Test.java b/src/test/java/org/assertj/db/navigation/ToChange_Change_Test.java index 467d86f3..c90f34ac 100644 --- a/src/test/java/org/assertj/db/navigation/ToChange_Change_Test.java +++ b/src/test/java/org/assertj/db/navigation/ToChange_Change_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.navigation; diff --git a/src/test/java/org/assertj/db/navigation/ToChange_Test.java b/src/test/java/org/assertj/db/navigation/ToChange_Test.java index d391b4c8..479340c6 100644 --- a/src/test/java/org/assertj/db/navigation/ToChange_Test.java +++ b/src/test/java/org/assertj/db/navigation/ToChange_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.navigation; diff --git a/src/test/java/org/assertj/db/navigation/ToChanges_Test.java b/src/test/java/org/assertj/db/navigation/ToChanges_Test.java index dfbd4acc..2df175c4 100644 --- a/src/test/java/org/assertj/db/navigation/ToChanges_Test.java +++ b/src/test/java/org/assertj/db/navigation/ToChanges_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.navigation; diff --git a/src/test/java/org/assertj/db/navigation/ToColumnFromChange_ColumnAmongTheModifiedOnes_Integer_Test.java b/src/test/java/org/assertj/db/navigation/ToColumnFromChange_ColumnAmongTheModifiedOnes_Integer_Test.java index 244ed33a..0d1817d7 100644 --- a/src/test/java/org/assertj/db/navigation/ToColumnFromChange_ColumnAmongTheModifiedOnes_Integer_Test.java +++ b/src/test/java/org/assertj/db/navigation/ToColumnFromChange_ColumnAmongTheModifiedOnes_Integer_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.navigation; diff --git a/src/test/java/org/assertj/db/navigation/ToColumnFromChange_ColumnAmongTheModifiedOnes_String_Test.java b/src/test/java/org/assertj/db/navigation/ToColumnFromChange_ColumnAmongTheModifiedOnes_String_Test.java index aeeb1184..bfb5445e 100644 --- a/src/test/java/org/assertj/db/navigation/ToColumnFromChange_ColumnAmongTheModifiedOnes_String_Test.java +++ b/src/test/java/org/assertj/db/navigation/ToColumnFromChange_ColumnAmongTheModifiedOnes_String_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.navigation; diff --git a/src/test/java/org/assertj/db/navigation/ToColumnFromChange_ColumnAmongTheModifiedOnes_Test.java b/src/test/java/org/assertj/db/navigation/ToColumnFromChange_ColumnAmongTheModifiedOnes_Test.java index 4551ed1f..f51753a8 100644 --- a/src/test/java/org/assertj/db/navigation/ToColumnFromChange_ColumnAmongTheModifiedOnes_Test.java +++ b/src/test/java/org/assertj/db/navigation/ToColumnFromChange_ColumnAmongTheModifiedOnes_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.navigation; diff --git a/src/test/java/org/assertj/db/navigation/ToColumn_Column_Integer_Test.java b/src/test/java/org/assertj/db/navigation/ToColumn_Column_Integer_Test.java index ea1c600b..0ffd588b 100644 --- a/src/test/java/org/assertj/db/navigation/ToColumn_Column_Integer_Test.java +++ b/src/test/java/org/assertj/db/navigation/ToColumn_Column_Integer_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.navigation; diff --git a/src/test/java/org/assertj/db/navigation/ToColumn_Column_String_Test.java b/src/test/java/org/assertj/db/navigation/ToColumn_Column_String_Test.java index 11981a37..ace6796b 100644 --- a/src/test/java/org/assertj/db/navigation/ToColumn_Column_String_Test.java +++ b/src/test/java/org/assertj/db/navigation/ToColumn_Column_String_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.navigation; diff --git a/src/test/java/org/assertj/db/navigation/ToColumn_Column_Test.java b/src/test/java/org/assertj/db/navigation/ToColumn_Column_Test.java index 8fdf3072..741e7940 100644 --- a/src/test/java/org/assertj/db/navigation/ToColumn_Column_Test.java +++ b/src/test/java/org/assertj/db/navigation/ToColumn_Column_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.navigation; diff --git a/src/test/java/org/assertj/db/navigation/ToRowFromChange_RowAtEndPoint_Test.java b/src/test/java/org/assertj/db/navigation/ToRowFromChange_RowAtEndPoint_Test.java index 303b7028..5c98b6f5 100644 --- a/src/test/java/org/assertj/db/navigation/ToRowFromChange_RowAtEndPoint_Test.java +++ b/src/test/java/org/assertj/db/navigation/ToRowFromChange_RowAtEndPoint_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.navigation; diff --git a/src/test/java/org/assertj/db/navigation/ToRowFromChange_RowAtStartPoint_Test.java b/src/test/java/org/assertj/db/navigation/ToRowFromChange_RowAtStartPoint_Test.java index db49a92b..4ff2348d 100644 --- a/src/test/java/org/assertj/db/navigation/ToRowFromChange_RowAtStartPoint_Test.java +++ b/src/test/java/org/assertj/db/navigation/ToRowFromChange_RowAtStartPoint_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.navigation; diff --git a/src/test/java/org/assertj/db/navigation/ToRow_Row_Integer_Test.java b/src/test/java/org/assertj/db/navigation/ToRow_Row_Integer_Test.java index d58bb606..c22b483f 100644 --- a/src/test/java/org/assertj/db/navigation/ToRow_Row_Integer_Test.java +++ b/src/test/java/org/assertj/db/navigation/ToRow_Row_Integer_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.navigation; diff --git a/src/test/java/org/assertj/db/navigation/ToRow_Row_Test.java b/src/test/java/org/assertj/db/navigation/ToRow_Row_Test.java index 58d84466..d9a12ab9 100644 --- a/src/test/java/org/assertj/db/navigation/ToRow_Row_Test.java +++ b/src/test/java/org/assertj/db/navigation/ToRow_Row_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.navigation; diff --git a/src/test/java/org/assertj/db/navigation/ToValueFromColumn_ValueAtEndPoint_Test.java b/src/test/java/org/assertj/db/navigation/ToValueFromColumn_ValueAtEndPoint_Test.java index 9b9d2d54..c398c1dd 100644 --- a/src/test/java/org/assertj/db/navigation/ToValueFromColumn_ValueAtEndPoint_Test.java +++ b/src/test/java/org/assertj/db/navigation/ToValueFromColumn_ValueAtEndPoint_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.navigation; diff --git a/src/test/java/org/assertj/db/navigation/ToValueFromColumn_ValueAtStartPoint_Test.java b/src/test/java/org/assertj/db/navigation/ToValueFromColumn_ValueAtStartPoint_Test.java index dda620a4..e0181c95 100644 --- a/src/test/java/org/assertj/db/navigation/ToValueFromColumn_ValueAtStartPoint_Test.java +++ b/src/test/java/org/assertj/db/navigation/ToValueFromColumn_ValueAtStartPoint_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.navigation; diff --git a/src/test/java/org/assertj/db/navigation/ToValueFromRow_Value_String_Test.java b/src/test/java/org/assertj/db/navigation/ToValueFromRow_Value_String_Test.java index 97289502..61a5a171 100644 --- a/src/test/java/org/assertj/db/navigation/ToValueFromRow_Value_String_Test.java +++ b/src/test/java/org/assertj/db/navigation/ToValueFromRow_Value_String_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.navigation; diff --git a/src/test/java/org/assertj/db/navigation/ToValue_Value_Integer_Test.java b/src/test/java/org/assertj/db/navigation/ToValue_Value_Integer_Test.java index 6b1deb3b..48c077a9 100644 --- a/src/test/java/org/assertj/db/navigation/ToValue_Value_Integer_Test.java +++ b/src/test/java/org/assertj/db/navigation/ToValue_Value_Integer_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.navigation; diff --git a/src/test/java/org/assertj/db/navigation/ToValue_Value_Test.java b/src/test/java/org/assertj/db/navigation/ToValue_Value_Test.java index 1b4e2e29..4594356d 100644 --- a/src/test/java/org/assertj/db/navigation/ToValue_Value_Test.java +++ b/src/test/java/org/assertj/db/navigation/ToValue_Value_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.navigation; diff --git a/src/test/java/org/assertj/db/output/Outputs_Constructor_Test.java b/src/test/java/org/assertj/db/output/Outputs_Constructor_Test.java index 81b16c69..ceeb20fb 100644 --- a/src/test/java/org/assertj/db/output/Outputs_Constructor_Test.java +++ b/src/test/java/org/assertj/db/output/Outputs_Constructor_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.output; diff --git a/src/test/java/org/assertj/db/output/OutputterChange_Test.java b/src/test/java/org/assertj/db/output/OutputterChange_Test.java index 57cf28a2..a6c07a97 100644 --- a/src/test/java/org/assertj/db/output/OutputterChange_Test.java +++ b/src/test/java/org/assertj/db/output/OutputterChange_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.output; diff --git a/src/test/java/org/assertj/db/output/OutputterChanges_Test.java b/src/test/java/org/assertj/db/output/OutputterChanges_Test.java index 04095ed3..5efd9ba6 100644 --- a/src/test/java/org/assertj/db/output/OutputterChanges_Test.java +++ b/src/test/java/org/assertj/db/output/OutputterChanges_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.output; diff --git a/src/test/java/org/assertj/db/output/OutputterColumn_Test.java b/src/test/java/org/assertj/db/output/OutputterColumn_Test.java index e40855e0..64de8807 100644 --- a/src/test/java/org/assertj/db/output/OutputterColumn_Test.java +++ b/src/test/java/org/assertj/db/output/OutputterColumn_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.output; diff --git a/src/test/java/org/assertj/db/output/OutputterException_Test.java b/src/test/java/org/assertj/db/output/OutputterException_Test.java index b4b2ae6a..b773708f 100644 --- a/src/test/java/org/assertj/db/output/OutputterException_Test.java +++ b/src/test/java/org/assertj/db/output/OutputterException_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.output; diff --git a/src/test/java/org/assertj/db/output/OutputterRequest_Test.java b/src/test/java/org/assertj/db/output/OutputterRequest_Test.java index d3d6090d..0f65492b 100644 --- a/src/test/java/org/assertj/db/output/OutputterRequest_Test.java +++ b/src/test/java/org/assertj/db/output/OutputterRequest_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.output; diff --git a/src/test/java/org/assertj/db/output/OutputterRow_Test.java b/src/test/java/org/assertj/db/output/OutputterRow_Test.java index 4264bfa1..252ca59e 100644 --- a/src/test/java/org/assertj/db/output/OutputterRow_Test.java +++ b/src/test/java/org/assertj/db/output/OutputterRow_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.output; diff --git a/src/test/java/org/assertj/db/output/OutputterTable_Test.java b/src/test/java/org/assertj/db/output/OutputterTable_Test.java index 44894b64..fbd760e9 100644 --- a/src/test/java/org/assertj/db/output/OutputterTable_Test.java +++ b/src/test/java/org/assertj/db/output/OutputterTable_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.output; diff --git a/src/test/java/org/assertj/db/output/OutputterToConsole_Test.java b/src/test/java/org/assertj/db/output/OutputterToConsole_Test.java index 306457ff..c2892b64 100644 --- a/src/test/java/org/assertj/db/output/OutputterToConsole_Test.java +++ b/src/test/java/org/assertj/db/output/OutputterToConsole_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.output; diff --git a/src/test/java/org/assertj/db/output/OutputterToFile_Test.java b/src/test/java/org/assertj/db/output/OutputterToFile_Test.java index 30788d11..0d11ae7f 100644 --- a/src/test/java/org/assertj/db/output/OutputterToFile_Test.java +++ b/src/test/java/org/assertj/db/output/OutputterToFile_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.output; diff --git a/src/test/java/org/assertj/db/output/OutputterToStream_Test.java b/src/test/java/org/assertj/db/output/OutputterToStream_Test.java index 70b273dc..05266435 100644 --- a/src/test/java/org/assertj/db/output/OutputterToStream_Test.java +++ b/src/test/java/org/assertj/db/output/OutputterToStream_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.output; diff --git a/src/test/java/org/assertj/db/output/OutputterValue_Test.java b/src/test/java/org/assertj/db/output/OutputterValue_Test.java index 65d0990b..7e086ae3 100644 --- a/src/test/java/org/assertj/db/output/OutputterValue_Test.java +++ b/src/test/java/org/assertj/db/output/OutputterValue_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.output; diff --git a/src/test/java/org/assertj/db/output/impl/HtmlOutput_Test.java b/src/test/java/org/assertj/db/output/impl/HtmlOutput_Test.java index e6a8a67f..1540018a 100644 --- a/src/test/java/org/assertj/db/output/impl/HtmlOutput_Test.java +++ b/src/test/java/org/assertj/db/output/impl/HtmlOutput_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.output.impl; diff --git a/src/test/java/org/assertj/db/output/impl/HtmlOutput_ValueOf_Test.java b/src/test/java/org/assertj/db/output/impl/HtmlOutput_ValueOf_Test.java index ca2d520f..7f33271f 100644 --- a/src/test/java/org/assertj/db/output/impl/HtmlOutput_ValueOf_Test.java +++ b/src/test/java/org/assertj/db/output/impl/HtmlOutput_ValueOf_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.output.impl; diff --git a/src/test/java/org/assertj/db/output/impl/OutputType_ValueOf_Test.java b/src/test/java/org/assertj/db/output/impl/OutputType_ValueOf_Test.java index 81e0bfd8..c31b433f 100644 --- a/src/test/java/org/assertj/db/output/impl/OutputType_ValueOf_Test.java +++ b/src/test/java/org/assertj/db/output/impl/OutputType_ValueOf_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.output.impl; diff --git a/src/test/java/org/assertj/db/output/impl/PlainOutput_Test.java b/src/test/java/org/assertj/db/output/impl/PlainOutput_Test.java index 079c44c1..1b10aeff 100644 --- a/src/test/java/org/assertj/db/output/impl/PlainOutput_Test.java +++ b/src/test/java/org/assertj/db/output/impl/PlainOutput_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.output.impl; diff --git a/src/test/java/org/assertj/db/output/impl/PlainOutput_ValueOf_Test.java b/src/test/java/org/assertj/db/output/impl/PlainOutput_ValueOf_Test.java index 7f7c8f7c..530dd9a2 100644 --- a/src/test/java/org/assertj/db/output/impl/PlainOutput_ValueOf_Test.java +++ b/src/test/java/org/assertj/db/output/impl/PlainOutput_ValueOf_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.output.impl; diff --git a/src/test/java/org/assertj/db/type/AbstractDbElement_Exception_Test.java b/src/test/java/org/assertj/db/type/AbstractDbElement_Exception_Test.java index 05d27ec2..e7aa430a 100644 --- a/src/test/java/org/assertj/db/type/AbstractDbElement_Exception_Test.java +++ b/src/test/java/org/assertj/db/type/AbstractDbElement_Exception_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.type; diff --git a/src/test/java/org/assertj/db/type/ChangeType_ValueOf_Test.java b/src/test/java/org/assertj/db/type/ChangeType_ValueOf_Test.java index d7394187..09fb43ac 100644 --- a/src/test/java/org/assertj/db/type/ChangeType_ValueOf_Test.java +++ b/src/test/java/org/assertj/db/type/ChangeType_ValueOf_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.type; diff --git a/src/test/java/org/assertj/db/type/Change_Exception_Test.java b/src/test/java/org/assertj/db/type/Change_Exception_Test.java index 38aea01f..30b45b06 100644 --- a/src/test/java/org/assertj/db/type/Change_Exception_Test.java +++ b/src/test/java/org/assertj/db/type/Change_Exception_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.type; diff --git a/src/test/java/org/assertj/db/type/Change_GetDataType_Test.java b/src/test/java/org/assertj/db/type/Change_GetDataType_Test.java index 887485e5..6d5e9d7c 100644 --- a/src/test/java/org/assertj/db/type/Change_GetDataType_Test.java +++ b/src/test/java/org/assertj/db/type/Change_GetDataType_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.type; diff --git a/src/test/java/org/assertj/db/type/Changes_Constructor_Test.java b/src/test/java/org/assertj/db/type/Changes_Constructor_Test.java index da6e7802..5a252dc9 100644 --- a/src/test/java/org/assertj/db/type/Changes_Constructor_Test.java +++ b/src/test/java/org/assertj/db/type/Changes_Constructor_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.type; diff --git a/src/test/java/org/assertj/db/type/Changes_Exception_Test.java b/src/test/java/org/assertj/db/type/Changes_Exception_Test.java index 5fd20ac0..7a50f6f8 100644 --- a/src/test/java/org/assertj/db/type/Changes_Exception_Test.java +++ b/src/test/java/org/assertj/db/type/Changes_Exception_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.type; diff --git a/src/test/java/org/assertj/db/type/Changes_GetChangesOfTable_Test.java b/src/test/java/org/assertj/db/type/Changes_GetChangesOfTable_Test.java index 73a6bc44..928f29f7 100644 --- a/src/test/java/org/assertj/db/type/Changes_GetChangesOfTable_Test.java +++ b/src/test/java/org/assertj/db/type/Changes_GetChangesOfTable_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.type; diff --git a/src/test/java/org/assertj/db/type/Changes_GetChangesOfType_Test.java b/src/test/java/org/assertj/db/type/Changes_GetChangesOfType_Test.java index 199b9690..5f360dac 100644 --- a/src/test/java/org/assertj/db/type/Changes_GetChangesOfType_Test.java +++ b/src/test/java/org/assertj/db/type/Changes_GetChangesOfType_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.type; diff --git a/src/test/java/org/assertj/db/type/Changes_GetChanges_Test.java b/src/test/java/org/assertj/db/type/Changes_GetChanges_Test.java index e218536e..6148a1cc 100644 --- a/src/test/java/org/assertj/db/type/Changes_GetChanges_Test.java +++ b/src/test/java/org/assertj/db/type/Changes_GetChanges_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.type; diff --git a/src/test/java/org/assertj/db/type/Changes_Request_GetChangesList_Test.java b/src/test/java/org/assertj/db/type/Changes_Request_GetChangesList_Test.java index 18b599e9..81bdea34 100644 --- a/src/test/java/org/assertj/db/type/Changes_Request_GetChangesList_Test.java +++ b/src/test/java/org/assertj/db/type/Changes_Request_GetChangesList_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.type; diff --git a/src/test/java/org/assertj/db/type/Changes_SetTables_Test.java b/src/test/java/org/assertj/db/type/Changes_SetTables_Test.java index 772101ea..75ff0561 100644 --- a/src/test/java/org/assertj/db/type/Changes_SetTables_Test.java +++ b/src/test/java/org/assertj/db/type/Changes_SetTables_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.type; diff --git a/src/test/java/org/assertj/db/type/Changes_Table_GetChangesList_Test.java b/src/test/java/org/assertj/db/type/Changes_Table_GetChangesList_Test.java index 5c802279..4b8bd6a6 100644 --- a/src/test/java/org/assertj/db/type/Changes_Table_GetChangesList_Test.java +++ b/src/test/java/org/assertj/db/type/Changes_Table_GetChangesList_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.type; diff --git a/src/test/java/org/assertj/db/type/DataSourceWithLetterCase_Test.java b/src/test/java/org/assertj/db/type/DataSourceWithLetterCase_Test.java index ccd95d74..5b354716 100644 --- a/src/test/java/org/assertj/db/type/DataSourceWithLetterCase_Test.java +++ b/src/test/java/org/assertj/db/type/DataSourceWithLetterCase_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.type; diff --git a/src/test/java/org/assertj/db/type/DataType_ValueOf_Test.java b/src/test/java/org/assertj/db/type/DataType_ValueOf_Test.java index 990082ad..3b370689 100644 --- a/src/test/java/org/assertj/db/type/DataType_ValueOf_Test.java +++ b/src/test/java/org/assertj/db/type/DataType_ValueOf_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.type; diff --git a/src/test/java/org/assertj/db/type/DateTimeValue_Test.java b/src/test/java/org/assertj/db/type/DateTimeValue_Test.java index 2b18f39d..7751e9d5 100644 --- a/src/test/java/org/assertj/db/type/DateTimeValue_Test.java +++ b/src/test/java/org/assertj/db/type/DateTimeValue_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.type; diff --git a/src/test/java/org/assertj/db/type/DateValue_Test.java b/src/test/java/org/assertj/db/type/DateValue_Test.java index ebbe8b36..175da17a 100644 --- a/src/test/java/org/assertj/db/type/DateValue_Test.java +++ b/src/test/java/org/assertj/db/type/DateValue_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.type; diff --git a/src/test/java/org/assertj/db/type/OrderType_ValueOf_Test.java b/src/test/java/org/assertj/db/type/OrderType_ValueOf_Test.java index 07467047..44f4e7f0 100644 --- a/src/test/java/org/assertj/db/type/OrderType_ValueOf_Test.java +++ b/src/test/java/org/assertj/db/type/OrderType_ValueOf_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.type; diff --git a/src/test/java/org/assertj/db/type/Order_Equals_Test.java b/src/test/java/org/assertj/db/type/Order_Equals_Test.java index 1798c265..e91e6a92 100644 --- a/src/test/java/org/assertj/db/type/Order_Equals_Test.java +++ b/src/test/java/org/assertj/db/type/Order_Equals_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.type; diff --git a/src/test/java/org/assertj/db/type/Request_Columns_Name_Test.java b/src/test/java/org/assertj/db/type/Request_Columns_Name_Test.java index 5684a312..8bc73b8f 100644 --- a/src/test/java/org/assertj/db/type/Request_Columns_Name_Test.java +++ b/src/test/java/org/assertj/db/type/Request_Columns_Name_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.type; diff --git a/src/test/java/org/assertj/db/type/Request_Columns_Test.java b/src/test/java/org/assertj/db/type/Request_Columns_Test.java index fec0975e..ade8eb9c 100644 --- a/src/test/java/org/assertj/db/type/Request_Columns_Test.java +++ b/src/test/java/org/assertj/db/type/Request_Columns_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.type; diff --git a/src/test/java/org/assertj/db/type/Request_Exception_Test.java b/src/test/java/org/assertj/db/type/Request_Exception_Test.java index dc14b89a..4f20c11d 100644 --- a/src/test/java/org/assertj/db/type/Request_Exception_Test.java +++ b/src/test/java/org/assertj/db/type/Request_Exception_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.type; diff --git a/src/test/java/org/assertj/db/type/Request_GetRowFromPksValues_Test.java b/src/test/java/org/assertj/db/type/Request_GetRowFromPksValues_Test.java index 3e404a9b..62a1a10e 100644 --- a/src/test/java/org/assertj/db/type/Request_GetRowFromPksValues_Test.java +++ b/src/test/java/org/assertj/db/type/Request_GetRowFromPksValues_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.type; diff --git a/src/test/java/org/assertj/db/type/Request_Getters_Test.java b/src/test/java/org/assertj/db/type/Request_Getters_Test.java index 9b80af75..171b9f57 100644 --- a/src/test/java/org/assertj/db/type/Request_Getters_Test.java +++ b/src/test/java/org/assertj/db/type/Request_Getters_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.type; diff --git a/src/test/java/org/assertj/db/type/Request_Instantiation_Test.java b/src/test/java/org/assertj/db/type/Request_Instantiation_Test.java index 93190170..4e84ca00 100644 --- a/src/test/java/org/assertj/db/type/Request_Instantiation_Test.java +++ b/src/test/java/org/assertj/db/type/Request_Instantiation_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.type; diff --git a/src/test/java/org/assertj/db/type/Request_PrimaryKeys_Name_Test.java b/src/test/java/org/assertj/db/type/Request_PrimaryKeys_Name_Test.java index 1f36703f..5d502c0a 100644 --- a/src/test/java/org/assertj/db/type/Request_PrimaryKeys_Name_Test.java +++ b/src/test/java/org/assertj/db/type/Request_PrimaryKeys_Name_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.type; diff --git a/src/test/java/org/assertj/db/type/Request_Rows_Test.java b/src/test/java/org/assertj/db/type/Request_Rows_Test.java index 4ed9c658..ff67a291 100644 --- a/src/test/java/org/assertj/db/type/Request_Rows_Test.java +++ b/src/test/java/org/assertj/db/type/Request_Rows_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.type; diff --git a/src/test/java/org/assertj/db/type/Row_GetPksNameList_Test.java b/src/test/java/org/assertj/db/type/Row_GetPksNameList_Test.java index b0b11f91..5cbc10c3 100644 --- a/src/test/java/org/assertj/db/type/Row_GetPksNameList_Test.java +++ b/src/test/java/org/assertj/db/type/Row_GetPksNameList_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.type; diff --git a/src/test/java/org/assertj/db/type/Row_GetPksValues_Test.java b/src/test/java/org/assertj/db/type/Row_GetPksValues_Test.java index 80b38689..13dbd1ba 100644 --- a/src/test/java/org/assertj/db/type/Row_GetPksValues_Test.java +++ b/src/test/java/org/assertj/db/type/Row_GetPksValues_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.type; diff --git a/src/test/java/org/assertj/db/type/Row_Has_PksValuesEqualTo_Test.java b/src/test/java/org/assertj/db/type/Row_Has_PksValuesEqualTo_Test.java index 581251b8..31c441f9 100644 --- a/src/test/java/org/assertj/db/type/Row_Has_PksValuesEqualTo_Test.java +++ b/src/test/java/org/assertj/db/type/Row_Has_PksValuesEqualTo_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.type; diff --git a/src/test/java/org/assertj/db/type/Table_Columns_Name_Test.java b/src/test/java/org/assertj/db/type/Table_Columns_Name_Test.java index ced35482..96c9760b 100644 --- a/src/test/java/org/assertj/db/type/Table_Columns_Name_Test.java +++ b/src/test/java/org/assertj/db/type/Table_Columns_Name_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.type; diff --git a/src/test/java/org/assertj/db/type/Table_Columns_Test.java b/src/test/java/org/assertj/db/type/Table_Columns_Test.java index 46f7ba91..ce2b1ee7 100644 --- a/src/test/java/org/assertj/db/type/Table_Columns_Test.java +++ b/src/test/java/org/assertj/db/type/Table_Columns_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.type; diff --git a/src/test/java/org/assertj/db/type/Table_Exception_Test.java b/src/test/java/org/assertj/db/type/Table_Exception_Test.java index 361d2b34..aff53e52 100644 --- a/src/test/java/org/assertj/db/type/Table_Exception_Test.java +++ b/src/test/java/org/assertj/db/type/Table_Exception_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.type; diff --git a/src/test/java/org/assertj/db/type/Table_GetRowFromPksValues_Test.java b/src/test/java/org/assertj/db/type/Table_GetRowFromPksValues_Test.java index 423a63a7..792486c5 100644 --- a/src/test/java/org/assertj/db/type/Table_GetRowFromPksValues_Test.java +++ b/src/test/java/org/assertj/db/type/Table_GetRowFromPksValues_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.type; diff --git a/src/test/java/org/assertj/db/type/Table_Getters_Test.java b/src/test/java/org/assertj/db/type/Table_Getters_Test.java index c310c270..e43e47c8 100644 --- a/src/test/java/org/assertj/db/type/Table_Getters_Test.java +++ b/src/test/java/org/assertj/db/type/Table_Getters_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.type; diff --git a/src/test/java/org/assertj/db/type/Table_Instantiation_Test.java b/src/test/java/org/assertj/db/type/Table_Instantiation_Test.java index 5bcb7672..7813d3ff 100644 --- a/src/test/java/org/assertj/db/type/Table_Instantiation_Test.java +++ b/src/test/java/org/assertj/db/type/Table_Instantiation_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.type; diff --git a/src/test/java/org/assertj/db/type/Table_PrimaryKeys_Name_Test.java b/src/test/java/org/assertj/db/type/Table_PrimaryKeys_Name_Test.java index 31377ad0..5aaa42bc 100644 --- a/src/test/java/org/assertj/db/type/Table_PrimaryKeys_Name_Test.java +++ b/src/test/java/org/assertj/db/type/Table_PrimaryKeys_Name_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.type; diff --git a/src/test/java/org/assertj/db/type/Table_Rows_Test.java b/src/test/java/org/assertj/db/type/Table_Rows_Test.java index 3b2eb5ff..91996d0a 100644 --- a/src/test/java/org/assertj/db/type/Table_Rows_Test.java +++ b/src/test/java/org/assertj/db/type/Table_Rows_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.type; diff --git a/src/test/java/org/assertj/db/type/TimeValue_Test.java b/src/test/java/org/assertj/db/type/TimeValue_Test.java index fc0d4f13..f695fa41 100644 --- a/src/test/java/org/assertj/db/type/TimeValue_Test.java +++ b/src/test/java/org/assertj/db/type/TimeValue_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.type; diff --git a/src/test/java/org/assertj/db/type/ValueType_GetPossibleTypesForComparison_Test.java b/src/test/java/org/assertj/db/type/ValueType_GetPossibleTypesForComparison_Test.java index 0f4f664c..bc835ea1 100644 --- a/src/test/java/org/assertj/db/type/ValueType_GetPossibleTypesForComparison_Test.java +++ b/src/test/java/org/assertj/db/type/ValueType_GetPossibleTypesForComparison_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.type; diff --git a/src/test/java/org/assertj/db/type/ValueType_GetType_Test.java b/src/test/java/org/assertj/db/type/ValueType_GetType_Test.java index 2db2554b..90ef6a49 100644 --- a/src/test/java/org/assertj/db/type/ValueType_GetType_Test.java +++ b/src/test/java/org/assertj/db/type/ValueType_GetType_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.type; diff --git a/src/test/java/org/assertj/db/type/ValueType_ValueOf_Test.java b/src/test/java/org/assertj/db/type/ValueType_ValueOf_Test.java index e10bcd46..de7e4f70 100644 --- a/src/test/java/org/assertj/db/type/ValueType_ValueOf_Test.java +++ b/src/test/java/org/assertj/db/type/ValueType_ValueOf_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.type; diff --git a/src/test/java/org/assertj/db/type/Value_IsComparisonPossible_Test.java b/src/test/java/org/assertj/db/type/Value_IsComparisonPossible_Test.java index f29e3447..bdb1b269 100644 --- a/src/test/java/org/assertj/db/type/Value_IsComparisonPossible_Test.java +++ b/src/test/java/org/assertj/db/type/Value_IsComparisonPossible_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.type; diff --git a/src/test/java/org/assertj/db/type/lettercase/CaseComparisons_Test.java b/src/test/java/org/assertj/db/type/lettercase/CaseComparisons_Test.java index ba4b9393..b7f36a94 100644 --- a/src/test/java/org/assertj/db/type/lettercase/CaseComparisons_Test.java +++ b/src/test/java/org/assertj/db/type/lettercase/CaseComparisons_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.type.lettercase; diff --git a/src/test/java/org/assertj/db/type/lettercase/CaseComparisons_ValueOf_Test.java b/src/test/java/org/assertj/db/type/lettercase/CaseComparisons_ValueOf_Test.java index 7c077aee..514ac90c 100644 --- a/src/test/java/org/assertj/db/type/lettercase/CaseComparisons_ValueOf_Test.java +++ b/src/test/java/org/assertj/db/type/lettercase/CaseComparisons_ValueOf_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.type.lettercase; diff --git a/src/test/java/org/assertj/db/type/lettercase/CaseConversions_Test.java b/src/test/java/org/assertj/db/type/lettercase/CaseConversions_Test.java index 364839d0..ffe697c4 100644 --- a/src/test/java/org/assertj/db/type/lettercase/CaseConversions_Test.java +++ b/src/test/java/org/assertj/db/type/lettercase/CaseConversions_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.type.lettercase; diff --git a/src/test/java/org/assertj/db/type/lettercase/CaseConversions_ValueOf_Test.java b/src/test/java/org/assertj/db/type/lettercase/CaseConversions_ValueOf_Test.java index c8993a71..afc2007e 100644 --- a/src/test/java/org/assertj/db/type/lettercase/CaseConversions_ValueOf_Test.java +++ b/src/test/java/org/assertj/db/type/lettercase/CaseConversions_ValueOf_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.type.lettercase; diff --git a/src/test/java/org/assertj/db/type/lettercase/LetterCase_Exception_Test.java b/src/test/java/org/assertj/db/type/lettercase/LetterCase_Exception_Test.java index fc9dafbd..824ff70d 100644 --- a/src/test/java/org/assertj/db/type/lettercase/LetterCase_Exception_Test.java +++ b/src/test/java/org/assertj/db/type/lettercase/LetterCase_Exception_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.type.lettercase; diff --git a/src/test/java/org/assertj/db/type/lettercase/LetterCase_Test.java b/src/test/java/org/assertj/db/type/lettercase/LetterCase_Test.java index 762f2afb..a3d77f55 100644 --- a/src/test/java/org/assertj/db/type/lettercase/LetterCase_Test.java +++ b/src/test/java/org/assertj/db/type/lettercase/LetterCase_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.type.lettercase; diff --git a/src/test/java/org/assertj/db/util/AssertionsOnChangeColumn_Constructor_Test.java b/src/test/java/org/assertj/db/util/AssertionsOnChangeColumn_Constructor_Test.java index c9f950c7..4adfb8be 100644 --- a/src/test/java/org/assertj/db/util/AssertionsOnChangeColumn_Constructor_Test.java +++ b/src/test/java/org/assertj/db/util/AssertionsOnChangeColumn_Constructor_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.util; diff --git a/src/test/java/org/assertj/db/util/AssertionsOnChange_Constructor_Test.java b/src/test/java/org/assertj/db/util/AssertionsOnChange_Constructor_Test.java index 863dbbd1..f2cc5171 100644 --- a/src/test/java/org/assertj/db/util/AssertionsOnChange_Constructor_Test.java +++ b/src/test/java/org/assertj/db/util/AssertionsOnChange_Constructor_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.util; diff --git a/src/test/java/org/assertj/db/util/AssertionsOnChanges_Constructor_Test.java b/src/test/java/org/assertj/db/util/AssertionsOnChanges_Constructor_Test.java index 486319d3..c3b492ef 100644 --- a/src/test/java/org/assertj/db/util/AssertionsOnChanges_Constructor_Test.java +++ b/src/test/java/org/assertj/db/util/AssertionsOnChanges_Constructor_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.util; diff --git a/src/test/java/org/assertj/db/util/AssertionsOnColumn_Constructor_Test.java b/src/test/java/org/assertj/db/util/AssertionsOnColumn_Constructor_Test.java index 8bf53301..c4fdc2e8 100644 --- a/src/test/java/org/assertj/db/util/AssertionsOnColumn_Constructor_Test.java +++ b/src/test/java/org/assertj/db/util/AssertionsOnColumn_Constructor_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.util; diff --git a/src/test/java/org/assertj/db/util/AssertionsOnRow_Constructor_Test.java b/src/test/java/org/assertj/db/util/AssertionsOnRow_Constructor_Test.java index dfc9c5ba..9e8e9930 100644 --- a/src/test/java/org/assertj/db/util/AssertionsOnRow_Constructor_Test.java +++ b/src/test/java/org/assertj/db/util/AssertionsOnRow_Constructor_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.util; diff --git a/src/test/java/org/assertj/db/util/AssertionsOnValue_Constructor_Test.java b/src/test/java/org/assertj/db/util/AssertionsOnValue_Constructor_Test.java index 3b831351..126db846 100644 --- a/src/test/java/org/assertj/db/util/AssertionsOnValue_Constructor_Test.java +++ b/src/test/java/org/assertj/db/util/AssertionsOnValue_Constructor_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.util; diff --git a/src/test/java/org/assertj/db/util/ChangeComparator_Test.java b/src/test/java/org/assertj/db/util/ChangeComparator_Test.java index 8d5024ae..c66f06b2 100644 --- a/src/test/java/org/assertj/db/util/ChangeComparator_Test.java +++ b/src/test/java/org/assertj/db/util/ChangeComparator_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.util; diff --git a/src/test/java/org/assertj/db/util/Changes_Constructor_Test.java b/src/test/java/org/assertj/db/util/Changes_Constructor_Test.java index e1b12f44..07b9860d 100644 --- a/src/test/java/org/assertj/db/util/Changes_Constructor_Test.java +++ b/src/test/java/org/assertj/db/util/Changes_Constructor_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.util; diff --git a/src/test/java/org/assertj/db/util/Changes_GetIndexesOfModifiedColumns_Test.java b/src/test/java/org/assertj/db/util/Changes_GetIndexesOfModifiedColumns_Test.java index af1b54da..e7e9e7ab 100644 --- a/src/test/java/org/assertj/db/util/Changes_GetIndexesOfModifiedColumns_Test.java +++ b/src/test/java/org/assertj/db/util/Changes_GetIndexesOfModifiedColumns_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.util; diff --git a/src/test/java/org/assertj/db/util/Descriptions_Constructor_Test.java b/src/test/java/org/assertj/db/util/Descriptions_Constructor_Test.java index 2a0f5700..5e5bced6 100644 --- a/src/test/java/org/assertj/db/util/Descriptions_Constructor_Test.java +++ b/src/test/java/org/assertj/db/util/Descriptions_Constructor_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.util; diff --git a/src/test/java/org/assertj/db/util/Descriptions_GetDescription_Test.java b/src/test/java/org/assertj/db/util/Descriptions_GetDescription_Test.java index eb514e0e..7cfb99f2 100644 --- a/src/test/java/org/assertj/db/util/Descriptions_GetDescription_Test.java +++ b/src/test/java/org/assertj/db/util/Descriptions_GetDescription_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.util; diff --git a/src/test/java/org/assertj/db/util/NameComparator_Test.java b/src/test/java/org/assertj/db/util/NameComparator_Test.java index aa051c6d..0e78d307 100644 --- a/src/test/java/org/assertj/db/util/NameComparator_Test.java +++ b/src/test/java/org/assertj/db/util/NameComparator_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.util; diff --git a/src/test/java/org/assertj/db/util/Proxies_Test.java b/src/test/java/org/assertj/db/util/Proxies_Test.java index d0efe7b6..b89c7482 100644 --- a/src/test/java/org/assertj/db/util/Proxies_Test.java +++ b/src/test/java/org/assertj/db/util/Proxies_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.util; diff --git a/src/test/java/org/assertj/db/util/RowComparator_Test.java b/src/test/java/org/assertj/db/util/RowComparator_Test.java index 0fb22205..0d242f91 100644 --- a/src/test/java/org/assertj/db/util/RowComparator_Test.java +++ b/src/test/java/org/assertj/db/util/RowComparator_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.util; diff --git a/src/test/java/org/assertj/db/util/Values_AreClose_Value_And_DateTimeValue_Test.java b/src/test/java/org/assertj/db/util/Values_AreClose_Value_And_DateTimeValue_Test.java index 1afba338..36c821f6 100644 --- a/src/test/java/org/assertj/db/util/Values_AreClose_Value_And_DateTimeValue_Test.java +++ b/src/test/java/org/assertj/db/util/Values_AreClose_Value_And_DateTimeValue_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.util; diff --git a/src/test/java/org/assertj/db/util/Values_AreClose_Value_And_DateValue_Test.java b/src/test/java/org/assertj/db/util/Values_AreClose_Value_And_DateValue_Test.java index a40027a2..d6c191d9 100644 --- a/src/test/java/org/assertj/db/util/Values_AreClose_Value_And_DateValue_Test.java +++ b/src/test/java/org/assertj/db/util/Values_AreClose_Value_And_DateValue_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.util; diff --git a/src/test/java/org/assertj/db/util/Values_AreClose_Value_And_Number_Test.java b/src/test/java/org/assertj/db/util/Values_AreClose_Value_And_Number_Test.java index 392c8bf4..709be141 100644 --- a/src/test/java/org/assertj/db/util/Values_AreClose_Value_And_Number_Test.java +++ b/src/test/java/org/assertj/db/util/Values_AreClose_Value_And_Number_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.util; diff --git a/src/test/java/org/assertj/db/util/Values_AreClose_Value_TimeValue_Test.java b/src/test/java/org/assertj/db/util/Values_AreClose_Value_TimeValue_Test.java index 0e031b57..1a1d8b54 100644 --- a/src/test/java/org/assertj/db/util/Values_AreClose_Value_TimeValue_Test.java +++ b/src/test/java/org/assertj/db/util/Values_AreClose_Value_TimeValue_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.util; diff --git a/src/test/java/org/assertj/db/util/Values_AreEqual_DateTime_And_String_Test.java b/src/test/java/org/assertj/db/util/Values_AreEqual_DateTime_And_String_Test.java index ad4c7d93..92011a83 100644 --- a/src/test/java/org/assertj/db/util/Values_AreEqual_DateTime_And_String_Test.java +++ b/src/test/java/org/assertj/db/util/Values_AreEqual_DateTime_And_String_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.util; diff --git a/src/test/java/org/assertj/db/util/Values_AreEqual_Date_And_String_Test.java b/src/test/java/org/assertj/db/util/Values_AreEqual_Date_And_String_Test.java index 9fea5784..7577bef2 100644 --- a/src/test/java/org/assertj/db/util/Values_AreEqual_Date_And_String_Test.java +++ b/src/test/java/org/assertj/db/util/Values_AreEqual_Date_And_String_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.util; diff --git a/src/test/java/org/assertj/db/util/Values_AreEqual_Number_And_String_Test.java b/src/test/java/org/assertj/db/util/Values_AreEqual_Number_And_String_Test.java index 15e2298f..81a18714 100644 --- a/src/test/java/org/assertj/db/util/Values_AreEqual_Number_And_String_Test.java +++ b/src/test/java/org/assertj/db/util/Values_AreEqual_Number_And_String_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.util; diff --git a/src/test/java/org/assertj/db/util/Values_AreEqual_Time_And_String_Test.java b/src/test/java/org/assertj/db/util/Values_AreEqual_Time_And_String_Test.java index d150911c..301cd37a 100644 --- a/src/test/java/org/assertj/db/util/Values_AreEqual_Time_And_String_Test.java +++ b/src/test/java/org/assertj/db/util/Values_AreEqual_Time_And_String_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.util; diff --git a/src/test/java/org/assertj/db/util/Values_AreEqual_UUID_And_String_Test.java b/src/test/java/org/assertj/db/util/Values_AreEqual_UUID_And_String_Test.java index 492fecf9..91ebf2d4 100644 --- a/src/test/java/org/assertj/db/util/Values_AreEqual_UUID_And_String_Test.java +++ b/src/test/java/org/assertj/db/util/Values_AreEqual_UUID_And_String_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.util; diff --git a/src/test/java/org/assertj/db/util/Values_AreEqual_Value_And_Boolean_Test.java b/src/test/java/org/assertj/db/util/Values_AreEqual_Value_And_Boolean_Test.java index d40ca097..8a80fb20 100644 --- a/src/test/java/org/assertj/db/util/Values_AreEqual_Value_And_Boolean_Test.java +++ b/src/test/java/org/assertj/db/util/Values_AreEqual_Value_And_Boolean_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.util; diff --git a/src/test/java/org/assertj/db/util/Values_AreEqual_Value_And_Bytes_Test.java b/src/test/java/org/assertj/db/util/Values_AreEqual_Value_And_Bytes_Test.java index 9cd5aafe..4d048b38 100644 --- a/src/test/java/org/assertj/db/util/Values_AreEqual_Value_And_Bytes_Test.java +++ b/src/test/java/org/assertj/db/util/Values_AreEqual_Value_And_Bytes_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.util; diff --git a/src/test/java/org/assertj/db/util/Values_AreEqual_Value_And_Character_Test.java b/src/test/java/org/assertj/db/util/Values_AreEqual_Value_And_Character_Test.java index 850c403c..a15e3e3a 100644 --- a/src/test/java/org/assertj/db/util/Values_AreEqual_Value_And_Character_Test.java +++ b/src/test/java/org/assertj/db/util/Values_AreEqual_Value_And_Character_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.util; diff --git a/src/test/java/org/assertj/db/util/Values_AreEqual_Value_And_DateTimeValue_Test.java b/src/test/java/org/assertj/db/util/Values_AreEqual_Value_And_DateTimeValue_Test.java index c5c6b2ad..0049b637 100644 --- a/src/test/java/org/assertj/db/util/Values_AreEqual_Value_And_DateTimeValue_Test.java +++ b/src/test/java/org/assertj/db/util/Values_AreEqual_Value_And_DateTimeValue_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.util; diff --git a/src/test/java/org/assertj/db/util/Values_AreEqual_Value_And_DateValue_Test.java b/src/test/java/org/assertj/db/util/Values_AreEqual_Value_And_DateValue_Test.java index 6ba1295c..54e0dd59 100644 --- a/src/test/java/org/assertj/db/util/Values_AreEqual_Value_And_DateValue_Test.java +++ b/src/test/java/org/assertj/db/util/Values_AreEqual_Value_And_DateValue_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.util; diff --git a/src/test/java/org/assertj/db/util/Values_AreEqual_Value_And_Number_Test.java b/src/test/java/org/assertj/db/util/Values_AreEqual_Value_And_Number_Test.java index 8ab2c2e6..823f634b 100644 --- a/src/test/java/org/assertj/db/util/Values_AreEqual_Value_And_Number_Test.java +++ b/src/test/java/org/assertj/db/util/Values_AreEqual_Value_And_Number_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.util; diff --git a/src/test/java/org/assertj/db/util/Values_AreEqual_Value_And_Object_Test.java b/src/test/java/org/assertj/db/util/Values_AreEqual_Value_And_Object_Test.java index dedd03b9..7b8b118c 100644 --- a/src/test/java/org/assertj/db/util/Values_AreEqual_Value_And_Object_Test.java +++ b/src/test/java/org/assertj/db/util/Values_AreEqual_Value_And_Object_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.util; diff --git a/src/test/java/org/assertj/db/util/Values_AreEqual_Value_And_String_Test.java b/src/test/java/org/assertj/db/util/Values_AreEqual_Value_And_String_Test.java index cfc707f6..9440ab42 100644 --- a/src/test/java/org/assertj/db/util/Values_AreEqual_Value_And_String_Test.java +++ b/src/test/java/org/assertj/db/util/Values_AreEqual_Value_And_String_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.util; diff --git a/src/test/java/org/assertj/db/util/Values_AreEqual_Value_And_UUID_Test.java b/src/test/java/org/assertj/db/util/Values_AreEqual_Value_And_UUID_Test.java index 2e3da349..e829688d 100644 --- a/src/test/java/org/assertj/db/util/Values_AreEqual_Value_And_UUID_Test.java +++ b/src/test/java/org/assertj/db/util/Values_AreEqual_Value_And_UUID_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.util; diff --git a/src/test/java/org/assertj/db/util/Values_AreEqual_Value_TimeValue_Test.java b/src/test/java/org/assertj/db/util/Values_AreEqual_Value_TimeValue_Test.java index 4aa21663..69ed2fbd 100644 --- a/src/test/java/org/assertj/db/util/Values_AreEqual_Value_TimeValue_Test.java +++ b/src/test/java/org/assertj/db/util/Values_AreEqual_Value_TimeValue_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.util; diff --git a/src/test/java/org/assertj/db/util/Values_Compare_Value_And_Number_Test.java b/src/test/java/org/assertj/db/util/Values_Compare_Value_And_Number_Test.java index 6bcd59fa..5773d37a 100644 --- a/src/test/java/org/assertj/db/util/Values_Compare_Value_And_Number_Test.java +++ b/src/test/java/org/assertj/db/util/Values_Compare_Value_And_Number_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.util; diff --git a/src/test/java/org/assertj/db/util/Values_Constructor_Test.java b/src/test/java/org/assertj/db/util/Values_Constructor_Test.java index b3a846aa..680d6954 100644 --- a/src/test/java/org/assertj/db/util/Values_Constructor_Test.java +++ b/src/test/java/org/assertj/db/util/Values_Constructor_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.util; diff --git a/src/test/java/org/assertj/db/util/Values_GetOutputFromValueInFrontOfClass_Test.java b/src/test/java/org/assertj/db/util/Values_GetOutputFromValueInFrontOfClass_Test.java index 39b2f5d3..7b8209c2 100644 --- a/src/test/java/org/assertj/db/util/Values_GetOutputFromValueInFrontOfClass_Test.java +++ b/src/test/java/org/assertj/db/util/Values_GetOutputFromValueInFrontOfClass_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.util; diff --git a/src/test/java/org/assertj/db/util/Values_GetOutputFromValueInFrontOfExpected_Test.java b/src/test/java/org/assertj/db/util/Values_GetOutputFromValueInFrontOfExpected_Test.java index 1501e44e..4c587e4f 100644 --- a/src/test/java/org/assertj/db/util/Values_GetOutputFromValueInFrontOfExpected_Test.java +++ b/src/test/java/org/assertj/db/util/Values_GetOutputFromValueInFrontOfExpected_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.util; diff --git a/src/test/java/org/assertj/db/util/Values_GetRepresentationsFromValuesInFrontOfExpected_Test.java b/src/test/java/org/assertj/db/util/Values_GetRepresentationsFromValuesInFrontOfExpected_Test.java index 295d95ab..d0ddc4df 100644 --- a/src/test/java/org/assertj/db/util/Values_GetRepresentationsFromValuesInFrontOfExpected_Test.java +++ b/src/test/java/org/assertj/db/util/Values_GetRepresentationsFromValuesInFrontOfExpected_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2015-2021 the original author or authors. + * Copyright 2015-2024 the original author or authors. */ package org.assertj.db.util; From b91626fcf7d81f6c54ba0c90b75d42ac93badbbc Mon Sep 17 00:00:00 2001 From: Julien Roy Date: Wed, 6 Nov 2024 13:48:53 +0100 Subject: [PATCH 3/4] Apply assertj code style --- .editorconfig | 26 + pom.xml | 430 +-- .../org/assertj/db/api/AbstractAssert.java | 11 +- .../db/api/AbstractAssertWithOrigin.java | 17 +- .../AbstractAssertWithOriginWithChanges.java | 8 +- ...actAssertWithOriginWithColumnsAndRows.java | 8 +- ...ithOriginWithColumnsAndRowsFromChange.java | 34 +- .../db/api/AbstractAssertWithValues.java | 412 ++- .../assertj/db/api/AbstractColumnAssert.java | 244 +- .../db/api/AbstractColumnValueAssert.java | 15 +- .../org/assertj/db/api/AbstractDbAssert.java | 107 +- .../org/assertj/db/api/AbstractRowAssert.java | 107 +- .../db/api/AbstractRowValueAssert.java | 35 +- .../db/api/AbstractSoftAssertions.java | 4 +- .../org/assertj/db/api/AbstractSubAssert.java | 43 +- .../assertj/db/api/AbstractValueAssert.java | 445 ++- .../java/org/assertj/db/api/Assertions.java | 47 +- .../org/assertj/db/api/BDDAssertions.java | 39 +- .../java/org/assertj/db/api/ChangeAssert.java | 167 +- .../assertj/db/api/ChangeColumnAssert.java | 264 +- .../db/api/ChangeColumnValueAssert.java | 15 +- .../org/assertj/db/api/ChangeRowAssert.java | 79 +- .../assertj/db/api/ChangeRowValueAssert.java | 27 +- .../org/assertj/db/api/ChangesAssert.java | 134 +- .../org/assertj/db/api/ErrorCollector.java | 40 +- .../assertj/db/api/ProxifyPositionResult.java | 81 +- .../org/assertj/db/api/RequestAssert.java | 7 +- .../assertj/db/api/RequestColumnAssert.java | 11 +- .../db/api/RequestColumnValueAssert.java | 9 +- .../org/assertj/db/api/RequestRowAssert.java | 11 +- .../assertj/db/api/RequestRowValueAssert.java | 3 +- .../org/assertj/db/api/SoftAssertions.java | 8 +- .../java/org/assertj/db/api/SoftProxies.java | 102 +- .../java/org/assertj/db/api/TableAssert.java | 5 +- .../org/assertj/db/api/TableColumnAssert.java | 9 +- .../db/api/TableColumnValueAssert.java | 9 +- .../org/assertj/db/api/TableRowAssert.java | 11 +- .../assertj/db/api/TableRowValueAssert.java | 7 +- .../api/assertions/AssertOnColumnClass.java | 4 +- .../api/assertions/AssertOnColumnContent.java | 4 +- .../assertions/AssertOnColumnEquality.java | 4 +- .../AssertOnColumnOfChangeEquality.java | 4 +- .../db/api/assertions/AssertOnColumnType.java | 20 +- .../api/assertions/AssertOnRowCondition.java | 2 - .../db/api/assertions/AssertOnRowNullity.java | 33 +- .../AssertOnRowOfChangeExistence.java | 2 +- .../assertions/AssertOnValueChronology.java | 8 +- .../assertions/AssertOnValueCloseness.java | 16 +- .../assertions/AssertOnValueCondition.java | 10 +- .../api/assertions/AssertOnValueEquality.java | 8 +- .../assertions/AssertOnValueInequality.java | 8 +- .../impl/AssertionsOnChangeType.java | 6 +- .../impl/AssertionsOnColumnClass.java | 10 +- .../impl/AssertionsOnColumnContent.java | 92 +- .../impl/AssertionsOnColumnEquality.java | 92 +- .../impl/AssertionsOnColumnName.java | 16 +- .../impl/AssertionsOnColumnOfChangeClass.java | 22 +- .../AssertionsOnColumnOfChangeEquality.java | 188 +- .../impl/AssertionsOnColumnOfChangeType.java | 150 +- .../impl/AssertionsOnColumnType.java | 32 +- .../assertions/impl/AssertionsOnDataType.java | 20 +- .../impl/AssertionsOnModifiedColumn.java | 14 +- .../impl/AssertionsOnModifiedColumns.java | 48 +- .../impl/AssertionsOnNumberOfChanges.java | 26 +- .../impl/AssertionsOnNumberOfColumns.java | 16 +- .../impl/AssertionsOnNumberOfRows.java | 10 +- .../impl/AssertionsOnPrimaryKey.java | 28 +- .../impl/AssertionsOnRowCondition.java | 17 +- .../impl/AssertionsOnRowEquality.java | 14 +- .../AssertionsOnRowOfChangeExistence.java | 22 +- .../impl/AssertionsOnTableExistence.java | 20 +- .../impl/AssertionsOnValueChronology.java | 56 +- .../impl/AssertionsOnValueClass.java | 6 +- .../impl/AssertionsOnValueCloseness.java | 32 +- .../impl/AssertionsOnValueComparison.java | 18 +- .../impl/AssertionsOnValueEquality.java | 54 +- .../impl/AssertionsOnValueInequality.java | 54 +- .../impl/AssertionsOnValueType.java | 8 +- .../impl/AssertionsOnValuesNullity.java | 14 +- .../org/assertj/db/error/ShouldBeAfter.java | 25 +- .../db/error/ShouldBeAfterOrEqual.java | 25 +- .../org/assertj/db/error/ShouldBeBefore.java | 25 +- .../db/error/ShouldBeBeforeOrEqual.java | 25 +- .../assertj/db/error/ShouldBeChangeType.java | 18 +- .../org/assertj/db/error/ShouldBeClose.java | 25 +- .../assertj/db/error/ShouldBeCompatible.java | 37 +- .../assertj/db/error/ShouldBeDataType.java | 16 +- .../org/assertj/db/error/ShouldBeEqual.java | 85 +- .../db/error/ShouldBeEqualWithEndPoint.java | 37 +- .../db/error/ShouldBeEqualWithStartPoint.java | 37 +- .../org/assertj/db/error/ShouldBeGreater.java | 25 +- .../db/error/ShouldBeGreaterOrEqual.java | 25 +- .../org/assertj/db/error/ShouldBeLess.java | 25 +- .../assertj/db/error/ShouldBeLessOrEqual.java | 25 +- .../assertj/db/error/ShouldBeModified.java | 19 +- .../org/assertj/db/error/ShouldBeOnTable.java | 16 +- .../assertj/db/error/ShouldBeValueClass.java | 82 +- .../error/ShouldBeValueClassWithEndPoint.java | 39 +- .../ShouldBeValueClassWithStartPoint.java | 39 +- .../assertj/db/error/ShouldBeValueType.java | 101 +- .../db/error/ShouldBeValueTypeOfAny.java | 103 +- .../ShouldBeValueTypeOfAnyWithEndPoint.java | 49 +- .../ShouldBeValueTypeOfAnyWithStartPoint.java | 49 +- .../error/ShouldBeValueTypeWithEndPoint.java | 47 +- .../ShouldBeValueTypeWithStartPoint.java | 47 +- .../db/error/ShouldContainsOnlyNotNull.java | 21 +- .../db/error/ShouldContainsOnlyNull.java | 21 +- .../assertj/db/error/ShouldContainsValue.java | 43 +- .../org/assertj/db/error/ShouldExist.java | 17 +- .../db/error/ShouldHaveChangesSize.java | 25 +- .../error/ShouldHaveChangesSizeGreater.java | 19 +- .../ShouldHaveChangesSizeGreaterOrEqual.java | 19 +- .../db/error/ShouldHaveChangesSizeLess.java | 19 +- .../ShouldHaveChangesSizeLessOrEqual.java | 19 +- .../db/error/ShouldHaveColumnsSize.java | 25 +- .../error/ShouldHaveColumnsSizeGreater.java | 18 +- .../ShouldHaveColumnsSizeGreaterOrEqual.java | 18 +- .../db/error/ShouldHaveColumnsSizeLess.java | 20 +- .../ShouldHaveColumnsSizeLessOrEqual.java | 20 +- .../db/error/ShouldHaveModifications.java | 37 +- .../org/assertj/db/error/ShouldHaveName.java | 19 +- .../ShouldHaveNumberOfModifications.java | 19 +- ...houldHaveNumberOfModificationsGreater.java | 19 +- ...veNumberOfModificationsGreaterOrEqual.java | 19 +- .../ShouldHaveNumberOfModificationsLess.java | 19 +- ...dHaveNumberOfModificationsLessOrEqual.java | 19 +- .../assertj/db/error/ShouldHavePksNames.java | 19 +- .../assertj/db/error/ShouldHavePksValues.java | 21 +- .../assertj/db/error/ShouldHaveRowsSize.java | 25 +- .../db/error/ShouldHaveRowsSizeGreater.java | 18 +- .../ShouldHaveRowsSizeGreaterOrEqual.java | 18 +- .../db/error/ShouldHaveRowsSizeLess.java | 20 +- .../error/ShouldHaveRowsSizeLessOrEqual.java | 20 +- .../assertj/db/error/ShouldNotBeEqual.java | 41 +- .../assertj/db/error/ShouldNotBeModified.java | 19 +- .../org/assertj/db/error/ShouldNotExist.java | 17 +- .../org/assertj/db/error/ShouldSatisfy.java | 9 +- .../db/exception/AssertJDBException.java | 7 +- .../assertj/db/global/AbstractElement.java | 2 +- .../org/assertj/db/navigation/Position.java | 33 +- .../db/navigation/PositionWithChanges.java | 66 +- .../db/navigation/PositionWithColumns.java | 9 +- .../navigation/PositionWithColumnsChange.java | 61 +- .../db/navigation/PositionWithPoints.java | 29 +- .../org/assertj/db/navigation/ToChange.java | 11 +- .../org/assertj/db/navigation/ToChanges.java | 2 +- .../org/assertj/db/navigation/ToColumn.java | 5 +- .../db/navigation/ToColumnFromChange.java | 3 +- .../java/org/assertj/db/navigation/ToRow.java | 7 +- .../db/navigation/ToRowFromChange.java | 3 +- .../org/assertj/db/navigation/ToValue.java | 3 +- .../db/navigation/ToValueFromColumn.java | 3 +- .../assertj/db/navigation/ToValueFromRow.java | 5 +- .../assertj/db/navigation/origin/Origin.java | 2 +- .../navigation/origin/OriginWithChanges.java | 11 +- .../origin/OriginWithColumnsAndRows.java | 9 +- .../OriginWithColumnsAndRowsFromChange.java | 17 +- .../origin/OriginWithValuesFromColumn.java | 21 +- .../origin/OriginWithValuesFromRow.java | 23 +- .../db/output/AbstractColumnOutputter.java | 42 +- .../output/AbstractColumnValueOutputter.java | 15 +- .../db/output/AbstractDbOutputter.java | 61 +- .../assertj/db/output/AbstractOutputter.java | 11 +- .../output/AbstractOutputterWithOrigin.java | 11 +- ...bstractOutputterWithOriginWithChanges.java | 8 +- ...OutputterWithOriginWithColumnsAndRows.java | 8 +- ...ithOriginWithColumnsAndRowsFromChange.java | 34 +- .../output/AbstractOutputterWithValues.java | 8 +- .../db/output/AbstractRowOutputter.java | 52 +- .../db/output/AbstractRowValueOutputter.java | 25 +- .../db/output/AbstractSubOutputter.java | 37 +- .../db/output/AbstractValueOutputter.java | 38 +- .../db/output/ChangeColumnOutputter.java | 32 +- .../db/output/ChangeColumnValueOutputter.java | 15 +- .../assertj/db/output/ChangeOutputter.java | 59 +- .../assertj/db/output/ChangeRowOutputter.java | 35 +- .../db/output/ChangeRowValueOutputter.java | 23 +- .../assertj/db/output/ChangesOutputter.java | 112 +- .../java/org/assertj/db/output/Outputs.java | 4 +- .../db/output/RequestColumnOutputter.java | 7 +- .../output/RequestColumnValueOutputter.java | 9 +- .../assertj/db/output/RequestOutputter.java | 3 +- .../db/output/RequestRowOutputter.java | 7 +- .../db/output/RequestRowValueOutputter.java | 5 +- .../db/output/TableColumnOutputter.java | 5 +- .../db/output/TableColumnValueOutputter.java | 9 +- .../org/assertj/db/output/TableOutputter.java | 3 +- .../assertj/db/output/TableRowOutputter.java | 9 +- .../db/output/TableRowValueOutputter.java | 7 +- .../assertj/db/output/impl/HtmlOutput.java | 97 +- .../org/assertj/db/output/impl/Output.java | 18 +- .../assertj/db/output/impl/OutputType.java | 71 +- .../assertj/db/output/impl/PlainOutput.java | 285 +- .../org/assertj/db/type/AbstractDbData.java | 99 +- .../assertj/db/type/AbstractDbElement.java | 114 +- src/main/java/org/assertj/db/type/Change.java | 142 +- .../java/org/assertj/db/type/Changes.java | 209 +- src/main/java/org/assertj/db/type/Column.java | 20 +- .../db/type/DataSourceWithLetterCase.java | 23 +- .../java/org/assertj/db/type/DataType.java | 3 +- .../org/assertj/db/type/DateTimeValue.java | 212 +- .../java/org/assertj/db/type/DateValue.java | 197 +- .../assertj/db/type/DateValueContainer.java | 6 +- .../java/org/assertj/db/type/DbElement.java | 1 - .../java/org/assertj/db/type/Request.java | 51 +- src/main/java/org/assertj/db/type/Row.java | 62 +- src/main/java/org/assertj/db/type/Source.java | 15 +- .../assertj/db/type/SourceWithLetterCase.java | 12 +- src/main/java/org/assertj/db/type/Table.java | 282 +- .../java/org/assertj/db/type/TimeValue.java | 285 +- src/main/java/org/assertj/db/type/Value.java | 80 +- .../java/org/assertj/db/type/ValueType.java | 23 +- .../db/type/lettercase/CaseComparison.java | 3 + .../db/type/lettercase/CaseComparisons.java | 15 +- .../db/type/lettercase/CaseConversion.java | 3 + .../db/type/lettercase/CaseConversions.java | 4 +- .../db/type/lettercase/LetterCase.java | 28 +- .../type/lettercase/WithColumnLetterCase.java | 2 + .../db/type/lettercase/WithLetterCase.java | 1 + .../lettercase/WithPrimaryKeyLetterCase.java | 2 + .../type/lettercase/WithTableLetterCase.java | 2 + .../org/assertj/db/util/ChangeComparator.java | 11 +- .../java/org/assertj/db/util/Changes.java | 21 +- .../org/assertj/db/util/Descriptions.java | 20 +- .../org/assertj/db/util/NameComparator.java | 14 +- .../org/assertj/db/util/RowComparator.java | 16 +- src/main/java/org/assertj/db/util/Values.java | 104 +- ...Equality_HasValues_One_Character_Test.java | 17 +- .../db/api/Assertions_BytesContent_Test.java | 31 +- .../db/api/Assertions_Constructor_Test.java | 18 +- .../api/BDDAssertions_BytesContent_Test.java | 15 +- .../api/BDDAssertions_Constructor_Test.java | 14 +- .../db/api/DefaultDescription_Test.java | 5 +- .../org/assertj/db/api/Descriptable_Test.java | 11 +- .../db/api/EntryPointsComparison_Test.java | 18 +- .../assertj/db/api/SoftAssertions_Test.java | 22 +- .../AssertOnChangeType_IsCreation_Test.java | 17 +- .../AssertOnChangeType_IsDeletion_Test.java | 17 +- ...ssertOnChangeType_IsModification_Test.java | 17 +- .../AssertOnChangeType_IsOfType_Test.java | 17 +- .../AssertOnColumnClass_IsOfClass_Test.java | 47 +- ...mnContent_ContainsValues_Boolean_Test.java | 29 +- ...lumnContent_ContainsValues_Bytes_Test.java | 17 +- ...Content_ContainsValues_Character_Test.java | 23 +- ...ent_ContainsValues_DateTimeValue_Test.java | 111 +- ...Content_ContainsValues_DateValue_Test.java | 65 +- ...umnContent_ContainsValues_Number_Test.java | 147 +- ...umnContent_ContainsValues_String_Test.java | 435 ++- ...olumnContent_HasValues_TimeValue_Test.java | 53 +- ...rtOnColumnContent_HasValues_UUID_Test.java | 64 +- ...ColumnEquality_HasValues_Boolean_Test.java | 23 +- ...OnColumnEquality_HasValues_Bytes_Test.java | 13 +- ...lumnEquality_HasValues_Character_Test.java | 17 +- ...Equality_HasValues_DateTimeValue_Test.java | 79 +- ...lumnEquality_HasValues_DateValue_Test.java | 53 +- ...nColumnEquality_HasValues_Number_Test.java | 119 +- ...nColumnEquality_HasValues_String_Test.java | 309 +- ...lumnEquality_HasValues_TimeValue_Test.java | 37 +- ...tOnColumnEquality_HasValues_UUID_Test.java | 48 +- ...AssertOnColumnName_HasColumnName_Test.java | 46 +- ...lumnNullity_HasOnlyNotNullValues_Test.java | 11 +- ...nColumnNullity_HasOnlyNullValues_Test.java | 11 +- ...geEquality_HasValues_One_Boolean_Test.java | 23 +- ...angeEquality_HasValues_One_Bytes_Test.java | 13 +- ...lity_HasValues_One_DateTimeValue_Test.java | 29 +- ...Equality_HasValues_One_DateValue_Test.java | 23 +- ...ngeEquality_HasValues_One_Number_Test.java | 23 +- ...ngeEquality_HasValues_One_String_Test.java | 39 +- ...Equality_HasValues_One_TimeValue_Test.java | 23 +- ...hangeEquality_HasValues_One_UUID_Test.java | 16 +- ...geEquality_HasValues_Two_Boolean_Test.java | 23 +- ...angeEquality_HasValues_Two_Bytes_Test.java | 13 +- ...Equality_HasValues_Two_Character_Test.java | 17 +- ...lity_HasValues_Two_DateTimeValue_Test.java | 35 +- ...Equality_HasValues_Two_DateValue_Test.java | 25 +- ...ngeEquality_HasValues_Two_Number_Test.java | 23 +- ...ngeEquality_HasValues_Two_String_Test.java | 39 +- ...Equality_HasValues_Two_TimeValue_Test.java | 25 +- ...hangeEquality_HasValues_Two_UUID_Test.java | 22 +- .../AssertOnColumnType_IsBoolean_Test.java | 55 +- .../AssertOnColumnType_IsBytes_Test.java | 55 +- .../AssertOnColumnType_IsDateTime_Test.java | 55 +- .../AssertOnColumnType_IsDate_Test.java | 55 +- .../AssertOnColumnType_IsNumber_Test.java | 55 +- ...AssertOnColumnType_IsOfAnyTypeIn_Test.java | 61 +- .../AssertOnColumnType_IsOfType_Test.java | 55 +- .../AssertOnColumnType_IsText_Test.java | 55 +- .../AssertOnColumnType_IsTime_Test.java | 55 +- .../AssertOnColumnType_IsUUID_Test.java | 42 +- .../AssertOnDataType_IsOnDataType_Test.java | 17 +- .../AssertOnDataType_IsOnRequest_Test.java | 17 +- .../AssertOnDataType_IsOnTable_Name_Test.java | 25 +- .../AssertOnDataType_IsOnTable_Test.java | 17 +- .../AssertOnExistence_DoesNotExist_Test.java | 9 +- .../AssertOnExistence_Exists_Test.java | 9 +- ...ssertOnModifiedColumn_IsModified_Test.java | 15 +- ...rtOnModifiedColumn_IsNotModified_Test.java | 15 +- ...lumns_HasModifiedColumns_Integer_Test.java | 15 +- ...olumns_HasModifiedColumns_String_Test.java | 15 +- ...ifiedColumnsGreaterThanOrEqualTo_Test.java | 17 +- ...mberOfModifiedColumnsGreaterThan_Test.java | 17 +- ...ModifiedColumnsLessThanOrEqualTo_Test.java | 17 +- ...sNumberOfModifiedColumnsLessThan_Test.java | 17 +- ...lumns_HasNumberOfModifiedColumns_Test.java | 15 +- ...berOfChangesGreaterThanOrEqualTo_Test.java | 15 +- ...es_HasNumberOfChangesGreaterThan_Test.java | 17 +- ...NumberOfChangesLessThanOrEqualTo_Test.java | 15 +- ...anges_HasNumberOfChangesLessThan_Test.java | 15 +- ...mberOfChanges_HasNumberOfChanges_Test.java | 15 +- ...berOfColumnsGreaterThanOrEqualTo_Test.java | 39 +- ...ns_HasNumberOfColumnsGreaterThan_Test.java | 39 +- ...NumberOfColumnsLessThanOrEqualTo_Test.java | 39 +- ...lumns_HasNumberOfColumnsLessThan_Test.java | 39 +- ...mberOfColumns_HasNumberOfColumns_Test.java | 39 +- ...NumberOfRowsGreaterThanOrEqualTo_Test.java | 23 +- ...fRows_HasNumberOfRowsGreaterThan_Test.java | 23 +- ...HasNumberOfRowsLessThanOrEqualTo_Test.java | 23 +- ...erOfRows_HasNumberOfRowsLessThan_Test.java | 23 +- ...rtOnNumberOfRows_HasNumberOfRows_Test.java | 23 +- .../AssertOnNumberOfRows_IsEmpty_Test.java | 22 +- .../AssertOnPrimaryKey_HasPksNames_Test.java | 23 +- .../AssertOnPrimaryKey_HasPksValues_Test.java | 23 +- ...RowCondition_HasValuesSatisfying_Test.java | 99 +- .../AssertOnRowEquality_HasValues_Test.java | 31 +- ...nRowNullity_HasOnlyNotNullValues_Test.java | 13 +- ...owOfChangeExistence_DoesNotExist_Test.java | 7 +- ...ertOnRowOfChangeExistence_Exists_Test.java | 7 +- ...y_IsAfterOrEqualTo_DateTimeValue_Test.java | 33 +- ...ology_IsAfterOrEqualTo_DateValue_Test.java | 31 +- ...y_IsAfterOrEqualTo_LocalDateTime_Test.java | 26 +- ...ology_IsAfterOrEqualTo_LocalDate_Test.java | 26 +- ...ology_IsAfterOrEqualTo_LocalTime_Test.java | 26 +- ...ronology_IsAfterOrEqualTo_String_Test.java | 23 +- ...ology_IsAfterOrEqualTo_TimeValue_Test.java | 31 +- ...Chronology_IsAfter_DateTimeValue_Test.java | 27 +- ...alueChronology_IsAfter_DateValue_Test.java | 29 +- ...Chronology_IsAfter_LocalDateTime_Test.java | 26 +- ...alueChronology_IsAfter_LocalDate_Test.java | 26 +- ...alueChronology_IsAfter_LocalTime_Test.java | 26 +- ...OnValueChronology_IsAfter_String_Test.java | 23 +- ...alueChronology_IsAfter_TimeValue_Test.java | 27 +- ..._IsBeforeOrEqualTo_DateTimeValue_Test.java | 29 +- ...logy_IsBeforeOrEqualTo_DateValue_Test.java | 31 +- ..._IsBeforeOrEqualTo_LocalDateTime_Test.java | 26 +- ...logy_IsBeforeOrEqualTo_LocalDate_Test.java | 26 +- ...logy_IsBeforeOrEqualTo_LocalTime_Test.java | 26 +- ...onology_IsBeforeOrEqualTo_String_Test.java | 23 +- ...logy_IsBeforeOrEqualTo_TimeValue_Test.java | 31 +- ...hronology_IsBefore_DateTimeValue_Test.java | 33 +- ...lueChronology_IsBefore_DateValue_Test.java | 29 +- ...hronology_IsBefore_LocalDateTime_Test.java | 26 +- ...lueChronology_IsBefore_LocalDate_Test.java | 26 +- ...lueChronology_IsBefore_LocalTime_Test.java | 26 +- ...nValueChronology_IsBefore_String_Test.java | 23 +- ...lueChronology_IsBefore_TimeValue_Test.java | 27 +- .../AssertOnValueClass_IsOfClass_Test.java | 31 +- ...seTo_DateTimeValue_DateTimeValue_Test.java | 43 +- ...sCloseTo_DateTimeValue_DateValue_Test.java | 43 +- ...sCloseTo_DateTimeValue_TimeValue_Test.java | 43 +- ...sCloseTo_DateValue_DateTimeValue_Test.java | 29 +- ...ss_IsCloseTo_DateValue_DateValue_Test.java | 27 +- ...ss_IsCloseTo_DateValue_TimeValue_Test.java | 29 +- ...nValueCloseness_IsCloseTo_Number_Test.java | 27 +- ...ss_IsCloseTo_TimeValue_TimeValue_Test.java | 31 +- ...omparison_IsGreaterThanOrEqualTo_Test.java | 23 +- ...tOnValueComparison_IsGreaterThan_Test.java | 23 +- ...ueComparison_IsLessThanOrEqualTo_Test.java | 23 +- ...sertOnValueComparison_IsLessThan_Test.java | 23 +- ...sertOnValueCondition_DoesNotHave_Test.java | 17 +- .../AssertOnValueCondition_Has_Test.java | 17 +- .../AssertOnValueCondition_IsNot_Test.java | 17 +- .../AssertOnValueCondition_Is_Test.java | 17 +- ...AssertOnValueCondition_Satisfies_Test.java | 19 +- ...nValueEquality_IsEqualTo_Boolean_Test.java | 23 +- ...tOnValueEquality_IsEqualTo_Bytes_Test.java | 13 +- ...alueEquality_IsEqualTo_Character_Test.java | 19 +- ...Equality_IsEqualTo_DateTimeValue_Test.java | 33 +- ...alueEquality_IsEqualTo_DateValue_Test.java | 17 +- ...Equality_IsEqualTo_LocalDateTime_Test.java | 26 +- ...alueEquality_IsEqualTo_LocalDate_Test.java | 16 +- ...alueEquality_IsEqualTo_LocalTime_Test.java | 26 +- ...OnValueEquality_IsEqualTo_Number_Test.java | 23 +- ...OnValueEquality_IsEqualTo_Object_Test.java | 23 +- ...OnValueEquality_IsEqualTo_String_Test.java | 23 +- ...alueEquality_IsEqualTo_TimeValue_Test.java | 23 +- ...rtOnValueEquality_IsEqualTo_UUID_Test.java | 28 +- .../AssertOnValueEquality_IsFalse_Test.java | 23 +- .../AssertOnValueEquality_IsTrue_Test.java | 23 +- .../AssertOnValueEquality_IsZero_Test.java | 23 +- ...eInequality_IsNotEqualTo_Boolean_Test.java | 23 +- ...lueInequality_IsNotEqualTo_Bytes_Test.java | 13 +- ...nequality_IsNotEqualTo_Character_Test.java | 17 +- ...ality_IsNotEqualTo_DateTimeValue_Test.java | 37 +- ...nequality_IsNotEqualTo_DateValue_Test.java | 23 +- ...ality_IsNotEqualTo_LocalDateTime_Test.java | 26 +- ...nequality_IsNotEqualTo_LocalDate_Test.java | 26 +- ...nequality_IsNotEqualTo_LocalTime_Test.java | 26 +- ...ueInequality_IsNotEqualTo_Number_Test.java | 23 +- ...ueInequality_IsNotEqualTo_Object_Test.java | 23 +- ...ueInequality_IsNotEqualTo_String_Test.java | 23 +- ...nequality_IsNotEqualTo_TimeValue_Test.java | 23 +- ...alueInequality_IsNotEqualTo_UUID_Test.java | 28 +- ...ssertOnValueInequality_IsNotZero_Test.java | 23 +- .../AssertOnValueNullity_IsNotNull_Test.java | 11 +- .../AssertOnValueNullity_IsNull_Test.java | 7 +- .../AssertOnValueType_IsBoolean_Test.java | 31 +- .../AssertOnValueType_IsBytes_Test.java | 31 +- .../AssertOnValueType_IsDateTime_Test.java | 31 +- .../AssertOnValueType_IsDate_Test.java | 31 +- .../AssertOnValueType_IsNumber_Test.java | 31 +- .../AssertOnValueType_IsOfAnyTypeIn_Test.java | 31 +- .../AssertOnValueType_IsOfType_Test.java | 31 +- .../AssertOnValueType_IsText_Test.java | 31 +- .../AssertOnValueType_IsTime_Test.java | 31 +- .../AssertOnValueType_IsUUID_Test.java | 22 +- .../db/api/assertions/BDDAssertions_Test.java | 1 - ...ssertionsOnChangeType_IsCreation_Test.java | 23 +- ...ssertionsOnChangeType_IsDeletion_Test.java | 23 +- ...tionsOnChangeType_IsModification_Test.java | 23 +- .../AssertionsOnChangeType_IsOfType_Test.java | 25 +- ...ssertionsOnColumnClass_IsOfClass_Test.java | 59 +- ...mnContent_ContainsValues_Boolean_Test.java | 71 +- ...lumnContent_ContainsValues_Bytes_Test.java | 65 +- ...Content_ContainsValues_Character_Test.java | 53 +- ...ent_ContainsValues_DateTimeValue_Test.java | 109 +- ...Content_ContainsValues_DateValue_Test.java | 91 +- ...umnContent_ContainsValues_Number_Test.java | 65 +- ...umnContent_ContainsValues_Object_Test.java | 71 +- ...umnContent_ContainsValues_String_Test.java | 67 +- ...Content_ContainsValues_TimeValue_Test.java | 83 +- ...olumnContent_ContainsValues_UUID_Test.java | 141 +- ...ColumnEquality_HasValues_Boolean_Test.java | 47 +- ...OnColumnEquality_HasValues_Bytes_Test.java | 59 +- ...lumnEquality_HasValues_Character_Test.java | 47 +- ...Equality_HasValues_DateTimeValue_Test.java | 105 +- ...lumnEquality_HasValues_DateValue_Test.java | 79 +- ...nColumnEquality_HasValues_Number_Test.java | 43 +- ...nColumnEquality_HasValues_Object_Test.java | 63 +- ...nColumnEquality_HasValues_String_Test.java | 95 +- ...lumnEquality_HasValues_TimeValue_Test.java | 55 +- ...sOnColumnEquality_HasValues_UUID_Test.java | 84 +- ...rtionsOnColumnName_HasColumnName_Test.java | 15 +- ...sOnColumnOfChangeClass_IsOfClass_Test.java | 201 +- ...geEquality_HasValues_One_Boolean_Test.java | 59 +- ...angeEquality_HasValues_One_Bytes_Test.java | 41 +- ...Equality_HasValues_One_Character_Test.java | 145 +- ...lity_HasValues_One_DateTimeValue_Test.java | 107 +- ...Equality_HasValues_One_DateValue_Test.java | 99 +- ...ngeEquality_HasValues_One_Number_Test.java | 53 +- ...ngeEquality_HasValues_One_Object_Test.java | 83 +- ...ngeEquality_HasValues_One_String_Test.java | 203 +- ...Equality_HasValues_One_TimeValue_Test.java | 53 +- ...hangeEquality_HasValues_One_UUID_Test.java | 73 +- ...geEquality_HasValues_Two_Boolean_Test.java | 61 +- ...angeEquality_HasValues_Two_Bytes_Test.java | 51 +- ...Equality_HasValues_Two_Character_Test.java | 101 +- ...lity_HasValues_Two_DateTimeValue_Test.java | 121 +- ...Equality_HasValues_Two_DateValue_Test.java | 101 +- ...ngeEquality_HasValues_Two_Number_Test.java | 51 +- ...geEquality_HasValues_Two_Objects_Test.java | 103 +- ...ngeEquality_HasValues_Two_String_Test.java | 191 +- ...Equality_HasValues_Two_TimeValue_Test.java | 63 +- ...hangeEquality_HasValues_Two_UUID_Test.java | 93 +- ...nsOnColumnOfChangeType_IsBoolean_Test.java | 59 +- ...ionsOnColumnOfChangeType_IsBytes_Test.java | 75 +- ...sOnColumnOfChangeType_IsDateTime_Test.java | 93 +- ...tionsOnColumnOfChangeType_IsDate_Test.java | 85 +- ...onsOnColumnOfChangeType_IsNumber_Test.java | 59 +- ...olumnOfChangeType_IsOfAnyOfTypes_Test.java | 155 +- ...onsOnColumnOfChangeType_IsOfType_Test.java | 125 +- ...tionsOnColumnOfChangeType_IsText_Test.java | 67 +- ...tionsOnColumnOfChangeType_IsTime_Test.java | 87 +- ...AssertionsOnColumnType_IsBoolean_Test.java | 51 +- .../AssertionsOnColumnType_IsBytes_Test.java | 51 +- ...ssertionsOnColumnType_IsDateTime_Test.java | 65 +- .../AssertionsOnColumnType_IsDate_Test.java | 59 +- .../AssertionsOnColumnType_IsNumber_Test.java | 51 +- ...rtionsOnColumnType_IsOfAnyTypeIn_Test.java | 81 +- .../AssertionsOnColumnType_IsOfType_Test.java | 77 +- .../AssertionsOnColumnType_IsText_Test.java | 51 +- .../AssertionsOnColumnType_IsTime_Test.java | 59 +- .../AssertionsOnColumnType_IsUUID_Test.java | 67 +- ...ssertionsOnDataType_IsOnDataType_Test.java | 23 +- ...AssertionsOnDataType_IsOnRequest_Test.java | 23 +- ...ertionsOnDataType_IsOnTable_Name_Test.java | 31 +- .../AssertionsOnDataType_IsOnTable_Test.java | 23 +- ...tionsOnModifiedColumn_IsModified_Test.java | 27 +- ...nsOnModifiedColumn_IsNotModified_Test.java | 35 +- ...lumns_HasModifiedColumns_Integer_Test.java | 75 +- ...olumns_HasModifiedColumns_String_Test.java | 137 +- ...ifiedColumnsGreaterThanOrEqualTo_Test.java | 55 +- ...mberOfModifiedColumnsGreaterThan_Test.java | 55 +- ...ModifiedColumnsLessThanOrEqualTo_Test.java | 53 +- ...sNumberOfModifiedColumnsLessThan_Test.java | 53 +- ...lumns_HasNumberOfModifiedColumns_Test.java | 51 +- ...berOfChangesGreaterThanOrEqualTo_Test.java | 54 +- ...es_HasNumberOfChangesGreaterThan_Test.java | 54 +- ...NumberOfChangesLessThanOrEqualTo_Test.java | 54 +- ...anges_HasNumberOfChangesLessThan_Test.java | 54 +- ...mberOfChanges_HasNumberOfChanges_Test.java | 52 +- ...berOfColumnsGreaterThanOrEqualTo_Test.java | 17 +- ...ns_HasNumberOfColumnsGreaterThan_Test.java | 15 +- ...NumberOfColumnsLessThanOrEqualTo_Test.java | 15 +- ...lumns_HasNumberOfColumnsLessThan_Test.java | 15 +- ...mberOfColumns_HasNumberOfColumns_Test.java | 15 +- ...NumberOfRowsGreaterThanOrEqualTo_Test.java | 15 +- ...fRows_HasNumberOfRowsGreaterThan_Test.java | 15 +- ...HasNumberOfRowsLessThanOrEqualTo_Test.java | 15 +- ...erOfRows_HasNumberOfRowsLessThan_Test.java | 15 +- ...nsOnNumberOfRows_HasNumberOfRows_Test.java | 15 +- ...sertionsOnPrimaryKey_HasPksNames_Test.java | 123 +- ...ertionsOnPrimaryKey_HasPksValues_Test.java | 71 +- ...owCondition_HasValues_Satisfying_Test.java | 115 +- ...ssertionsOnRowEquality_HasValues_Test.java | 75 +- ...owOfChangeExistence_DoesNotExist_Test.java | 19 +- ...onsOnRowOfChangeExistence_Exists_Test.java | 9 +- ...onsOnTableExistence_DoesNotExist_Test.java | 7 +- ...ssertionsOnTableExistence_Exists_Test.java | 17 +- ...y_IsAfterOrEqualTo_DateTimeValue_Test.java | 83 +- ...ology_IsAfterOrEqualTo_DateValue_Test.java | 69 +- ...ronology_IsAfterOrEqualTo_String_Test.java | 141 +- ...ology_IsAfterOrEqualTo_TimeValue_Test.java | 47 +- ...Chronology_IsAfter_DateTimeValue_Test.java | 95 +- ...alueChronology_IsAfter_DateValue_Test.java | 85 +- ...OnValueChronology_IsAfter_String_Test.java | 179 +- ...alueChronology_IsAfter_TimeValue_Test.java | 55 +- ..._IsBeforeOrEqualTo_DateTimeValue_Test.java | 83 +- ...logy_IsBeforeOrEqualTo_DateValue_Test.java | 69 +- ...onology_IsBeforeOrEqualTo_String_Test.java | 145 +- ...logy_IsBeforeOrEqualTo_TimeValue_Test.java | 47 +- ...hronology_IsBefore_DateTimeValue_Test.java | 95 +- ...lueChronology_IsBefore_DateValue_Test.java | 85 +- ...nValueChronology_IsBefore_String_Test.java | 181 +- ...lueChronology_IsBefore_TimeValue_Test.java | 55 +- ...AssertionsOnValueClass_IsOfClass_Test.java | 27 +- ...seTo_DateTimeValue_DateTimeValue_Test.java | 83 +- ...sCloseTo_DateTimeValue_DateValue_Test.java | 83 +- ...sCloseTo_DateTimeValue_TimeValue_Test.java | 85 +- ...sCloseTo_DateValue_DateTimeValue_Test.java | 79 +- ...ss_IsCloseTo_DateValue_DateValue_Test.java | 79 +- ...ss_IsCloseTo_DateValue_TimeValue_Test.java | 79 +- ...nValueCloseness_IsCloseTo_Number_Test.java | 39 +- ...ss_IsCloseTo_TimeValue_TimeValue_Test.java | 49 +- ...omparison_IsGreaterThanOrEqualTo_Test.java | 27 +- ...sOnValueComparison_IsGreaterThan_Test.java | 35 +- ...ueComparison_IsLessThanOrEqualTo_Test.java | 27 +- ...ionsOnValueComparison_IsLessThan_Test.java | 35 +- ...AssertionsOnValueCondition_IsNot_Test.java | 13 +- .../AssertionsOnValueCondition_Is_Test.java | 13 +- ...nValueEquality_IsEqualTo_Boolean_Test.java | 35 +- ...sOnValueEquality_IsEqualTo_Bytes_Test.java | 23 +- ...alueEquality_IsEqualTo_Character_Test.java | 37 +- ...Equality_IsEqualTo_DateTimeValue_Test.java | 67 +- ...alueEquality_IsEqualTo_DateValue_Test.java | 61 +- ...OnValueEquality_IsEqualTo_Number_Test.java | 35 +- ...OnValueEquality_IsEqualTo_Object_Test.java | 70 +- ...OnValueEquality_IsEqualTo_String_Test.java | 159 +- ...alueEquality_IsEqualTo_TimeValue_Test.java | 39 +- ...nsOnValueEquality_IsEqualTo_UUID_Test.java | 58 +- ...ssertionsOnValueEquality_IsFalse_Test.java | 27 +- ...AssertionsOnValueEquality_IsTrue_Test.java | 27 +- ...AssertionsOnValueEquality_IsZero_Test.java | 27 +- ...eInequality_IsNotEqualTo_Boolean_Test.java | 35 +- ...lueInequality_IsNotEqualTo_Bytes_Test.java | 27 +- ...nequality_IsNotEqualTo_Character_Test.java | 37 +- ...ality_IsNotEqualTo_DateTimeValue_Test.java | 75 +- ...nequality_IsNotEqualTo_DateValue_Test.java | 73 +- ...ueInequality_IsNotEqualTo_Number_Test.java | 35 +- ...ueInequality_IsNotEqualTo_Object_Test.java | 73 +- ...ueInequality_IsNotEqualTo_String_Test.java | 163 +- ...nequality_IsNotEqualTo_TimeValue_Test.java | 51 +- ...alueInequality_IsNotEqualTo_UUID_Test.java | 62 +- ...tionsOnValueInequality_IsNotZero_Test.java | 27 +- ...sertionsOnValueNullity_IsNotNull_Test.java | 9 +- .../AssertionsOnValueNullity_IsNull_Test.java | 7 +- .../AssertionsOnValueType_IsBoolean_Test.java | 31 +- .../AssertionsOnValueType_IsBytes_Test.java | 31 +- ...AssertionsOnValueType_IsDateTime_Test.java | 37 +- .../AssertionsOnValueType_IsDate_Test.java | 35 +- .../AssertionsOnValueType_IsNumber_Test.java | 31 +- ...ertionsOnValueType_IsOfAnyTypeIn_Test.java | 61 +- .../AssertionsOnValueType_IsOfType_Test.java | 59 +- .../AssertionsOnValueType_IsText_Test.java | 31 +- .../AssertionsOnValueType_IsTime_Test.java | 35 +- .../AssertionsOnValueType_IsUUID_Test.java | 36 +- ...luesNullity_HasOnlyNotNullValues_Test.java | 19 +- ...nValuesNullity_HasOnlyNullValues_Test.java | 19 +- ...sertionsOnChangeType_Constructor_Test.java | 12 +- ...ertionsOnColumnClass_Constructor_Test.java | 12 +- ...tionsOnColumnContent_Constructor_Test.java | 12 +- ...ionsOnColumnEquality_Constructor_Test.java | 12 +- ...sertionsOnColumnName_Constructor_Test.java | 12 +- ...nColumnOfChangeClass_Constructor_Test.java | 12 +- ...lumnOfChangeEquality_Constructor_Test.java | 12 +- ...OnColumnOfChangeType_Constructor_Test.java | 12 +- ...sertionsOnColumnType_Constructor_Test.java | 12 +- ...AssertionsOnDataType_Constructor_Test.java | 12 +- ...ionsOnModifiedColumn_Constructor_Test.java | 12 +- ...onsOnModifiedColumns_Constructor_Test.java | 12 +- ...onsOnNumberOfChanges_Constructor_Test.java | 12 +- ...onsOnNumberOfColumns_Constructor_Test.java | 12 +- ...rtionsOnNumberOfRows_Constructor_Test.java | 12 +- ...sertionsOnPrimaryKey_Constructor_Test.java | 12 +- ...ertionsOnRowEquality_Constructor_Test.java | 12 +- ...RowOfChangeExistence_Constructor_Test.java | 12 +- ...onsOnValueChronology_Constructor_Test.java | 12 +- ...sertionsOnValueClass_Constructor_Test.java | 12 +- ...ionsOnValueCloseness_Constructor_Test.java | 12 +- ...onsOnValueComparison_Constructor_Test.java | 12 +- ...tionsOnValueEquality_Constructor_Test.java | 12 +- ...nsOnValueNonEquality_Constructor_Test.java | 12 +- ...rtionsOnValueNullity_Constructor_Test.java | 12 +- ...ssertionsOnValueType_Constructor_Test.java | 12 +- ...tionsOnValuesNullity_Constructor_Test.java | 12 +- .../org/assertj/db/common/AbstractTest.java | 237 +- .../assertj/db/common/DefaultConnection.java | 105 +- .../assertj/db/common/DefaultDataSource.java | 13 +- .../db/common/DefaultPreparedStatement.java | 43 +- .../assertj/db/common/DefaultResultSet.java | 29 +- .../assertj/db/common/DefaultStatement.java | 31 +- .../org/assertj/db/common/NeedReload.java | 11 +- .../db/configuration/TestsConfiguration.java | 9 +- .../db/database/AbstractDatabaseTest.java | 26 +- .../db/database/derby/DerbyConfiguration.java | 7 +- .../db/database/h2/AbstractH2Test.java | 125 +- .../database/h2/AbstractReservedH2Test.java | 74 +- .../db/database/h2/H2Configuration.java | 9 +- .../h2/H2DataBase_Source_DDD_Test.java | 2768 ++++++++-------- .../db/database/h2/H2DataBase_Test.java | 4 +- .../h2/H2Database_DataSource_DDD_Test.java | 2769 ++++++++--------- .../h2/H2Database_DataSource_NSNSNS_Test.java | 480 ++- .../h2/H2Database_DataSource_UIUIUI_Test.java | 2617 ++++++++-------- .../h2/H2Database_Source_NSNSNS_Test.java | 500 ++- .../h2/H2Database_Source_UIUIUI_Test.java | 2586 +++++++-------- .../database/h2/ReservedH2Configuration.java | 5 +- .../database/h2/ReservedH2DataBase_Test.java | 4 +- ...eservedH2Database_DataSource_DDD_Test.java | 156 +- ...rvedH2Database_DataSource_NSNSNS_Test.java | 156 +- ...rvedH2Database_DataSource_UIUIUI_Test.java | 158 +- .../ReservedH2Database_Source_DDD_Test.java | 156 +- ...ReservedH2Database_Source_NSNSNS_Test.java | 156 +- ...ReservedH2Database_Source_UIUIUI_Test.java | 158 +- .../database/hsqldb/AbstractHsqldbTest.java | 67 +- .../database/hsqldb/HsqldbConfiguration.java | 7 +- .../database/hsqldb/HsqldbDataBase_Test.java | 16 +- .../HsqldbDatabase_Source_UIUIUI_Test.java | 1124 +++---- .../database/sqlite/AbstractSqliteTest.java | 89 +- .../database/sqlite/SqliteConfiguration.java | 51 +- .../database/sqlite/SqliteDataBase_Test.java | 16 +- .../SqliteDatabase_DataSource_DDD_Test.java | 958 +++--- ...SqliteDatabase_DataSource_NSNSNS_Test.java | 368 +-- ...SqliteDatabase_DataSource_UIUIUI_Test.java | 958 +++--- .../SqliteDatabase_Source_DDD_Test.java | 962 +++--- .../SqliteDatabase_Source_NSNSNS_Test.java | 366 +-- .../SqliteDatabase_Source_UIUIUI_Test.java | 962 +++--- .../navigation/InstantiationError_Test.java | 71 +- .../db/navigation/ReturnToOrigin_Test.java | 42 +- ..._ChangeOfCreationOnTable_Integer_Test.java | 43 +- ...ToChange_ChangeOfCreationOnTable_Test.java | 43 +- ...oChange_ChangeOfCreation_Integer_Test.java | 43 +- .../ToChange_ChangeOfCreation_Test.java | 43 +- ..._ChangeOfDeletionOnTable_Integer_Test.java | 43 +- ...ToChange_ChangeOfDeletionOnTable_Test.java | 43 +- ...oChange_ChangeOfDeletion_Integer_Test.java | 43 +- .../ToChange_ChangeOfDeletion_Test.java | 43 +- ...ngeOfModificationOnTable_Integer_Test.java | 43 +- ...ange_ChangeOfModificationOnTable_Test.java | 43 +- ...nge_ChangeOfModification_Integer_Test.java | 43 +- .../ToChange_ChangeOfModification_Test.java | 43 +- .../ToChange_ChangeOnTableWithPks_Test.java | 41 +- .../ToChange_ChangeOnTable_Integer_Test.java | 43 +- .../ToChange_ChangeOnTable_Test.java | 43 +- .../ToChange_Change_Integer_Test.java | 43 +- .../db/navigation/ToChange_Change_Test.java | 43 +- .../assertj/db/navigation/ToChange_Test.java | 15 +- .../assertj/db/navigation/ToChanges_Test.java | 17 +- ...lumnAmongTheModifiedOnes_Integer_Test.java | 115 +- ...olumnAmongTheModifiedOnes_String_Test.java | 113 +- ...hange_ColumnAmongTheModifiedOnes_Test.java | 103 +- .../ToColumn_Column_Integer_Test.java | 156 +- .../ToColumn_Column_String_Test.java | 196 +- .../db/navigation/ToColumn_Column_Test.java | 124 +- .../ToRowFromChange_RowAtEndPoint_Test.java | 43 +- .../ToRowFromChange_RowAtStartPoint_Test.java | 43 +- .../db/navigation/ToRow_Row_Integer_Test.java | 184 +- .../assertj/db/navigation/ToRow_Row_Test.java | 184 +- ...oValueFromColumn_ValueAtEndPoint_Test.java | 41 +- ...alueFromColumn_ValueAtStartPoint_Test.java | 45 +- .../ToValueFromRow_Value_String_Test.java | 105 +- .../ToValue_Value_Integer_Test.java | 250 +- .../db/navigation/ToValue_Value_Test.java | 226 +- .../db/output/Outputs_Constructor_Test.java | 8 +- .../db/output/OutputterChange_Test.java | 182 +- .../db/output/OutputterChanges_Test.java | 168 +- .../db/output/OutputterColumn_Test.java | 164 +- .../db/output/OutputterException_Test.java | 24 +- .../db/output/OutputterRequest_Test.java | 30 +- .../assertj/db/output/OutputterRow_Test.java | 150 +- .../db/output/OutputterTable_Test.java | 30 +- .../db/output/OutputterToConsole_Test.java | 14 +- .../db/output/OutputterToFile_Test.java | 22 +- .../db/output/OutputterToStream_Test.java | 12 +- .../db/output/OutputterValue_Test.java | 320 +- .../db/output/impl/HtmlOutput_Test.java | 434 +-- .../output/impl/HtmlOutput_ValueOf_Test.java | 3 +- .../output/impl/OutputType_ValueOf_Test.java | 1 - .../db/output/impl/PlainOutput_Test.java | 1054 +++---- .../output/impl/PlainOutput_ValueOf_Test.java | 3 +- .../AbstractDbElement_Exception_Test.java | 33 +- .../db/type/ChangeType_ValueOf_Test.java | 7 +- .../db/type/Change_Exception_Test.java | 19 +- .../db/type/Change_GetDataType_Test.java | 5 +- .../db/type/Changes_Constructor_Test.java | 7 +- .../db/type/Changes_Exception_Test.java | 15 +- .../type/Changes_GetChangesOfTable_Test.java | 57 +- .../type/Changes_GetChangesOfType_Test.java | 299 +- .../db/type/Changes_GetChanges_Test.java | 27 +- .../Changes_Request_GetChangesList_Test.java | 47 +- .../db/type/Changes_SetTables_Test.java | 3 +- .../Changes_Table_GetChangesList_Test.java | 59 +- .../type/DataSourceWithLetterCase_Test.java | 165 +- .../db/type/DataType_ValueOf_Test.java | 5 +- .../assertj/db/type/DateTimeValue_Test.java | 521 ++-- .../org/assertj/db/type/DateValue_Test.java | 201 +- .../db/type/OrderType_ValueOf_Test.java | 19 +- .../assertj/db/type/Order_Equals_Test.java | 29 +- .../db/type/Request_Columns_Name_Test.java | 61 +- .../assertj/db/type/Request_Columns_Test.java | 23 +- .../db/type/Request_Exception_Test.java | 13 +- .../Request_GetRowFromPksValues_Test.java | 21 +- .../assertj/db/type/Request_Getters_Test.java | 43 +- .../db/type/Request_Instantiation_Test.java | 7 +- .../type/Request_PrimaryKeys_Name_Test.java | 67 +- .../assertj/db/type/Request_Rows_Test.java | 45 +- .../db/type/Row_GetPksNameList_Test.java | 23 +- .../db/type/Row_GetPksValues_Test.java | 17 +- .../type/Row_Has_PksValuesEqualTo_Test.java | 45 +- .../db/type/Table_Columns_Name_Test.java | 27 +- .../assertj/db/type/Table_Columns_Test.java | 13 +- .../assertj/db/type/Table_Exception_Test.java | 28 +- .../type/Table_GetRowFromPksValues_Test.java | 21 +- .../assertj/db/type/Table_Getters_Test.java | 25 +- .../db/type/Table_Instantiation_Test.java | 11 +- .../db/type/Table_PrimaryKeys_Name_Test.java | 23 +- .../org/assertj/db/type/Table_Rows_Test.java | 77 +- .../org/assertj/db/type/TimeValue_Test.java | 95 +- ...pe_GetPossibleTypesForComparison_Test.java | 35 +- .../db/type/ValueType_GetType_Test.java | 11 +- .../db/type/ValueType_ValueOf_Test.java | 7 +- .../type/Value_IsComparisonPossible_Test.java | 85 +- .../type/lettercase/CaseComparisons_Test.java | 5 +- .../CaseComparisons_ValueOf_Test.java | 5 +- .../type/lettercase/CaseConversions_Test.java | 5 +- .../CaseConversions_ValueOf_Test.java | 5 +- .../lettercase/LetterCase_Exception_Test.java | 5 +- .../db/type/lettercase/LetterCase_Test.java | 5 +- ...rtionsOnChangeColumn_Constructor_Test.java | 10 +- .../AssertionsOnChange_Constructor_Test.java | 10 +- .../AssertionsOnChanges_Constructor_Test.java | 10 +- .../AssertionsOnColumn_Constructor_Test.java | 10 +- .../AssertionsOnRow_Constructor_Test.java | 10 +- .../AssertionsOnValue_Constructor_Test.java | 10 +- .../db/util/ChangeComparator_Test.java | 90 +- .../db/util/Changes_Constructor_Test.java | 8 +- ...nges_GetIndexesOfModifiedColumns_Test.java | 55 +- .../util/Descriptions_Constructor_Test.java | 8 +- .../Descriptions_GetDescription_Test.java | 28 +- .../assertj/db/util/NameComparator_Test.java | 9 +- .../org/assertj/db/util/Proxies_Test.java | 21 +- .../assertj/db/util/RowComparator_Test.java | 171 +- ...AreClose_Value_And_DateTimeValue_Test.java | 337 +- ...ues_AreClose_Value_And_DateValue_Test.java | 73 +- ...Values_AreClose_Value_And_Number_Test.java | 9 +- .../Values_AreClose_Value_TimeValue_Test.java | 11 +- ...ues_AreEqual_DateTime_And_String_Test.java | 55 +- .../Values_AreEqual_Date_And_String_Test.java | 9 +- ...alues_AreEqual_Number_And_String_Test.java | 11 +- .../Values_AreEqual_Time_And_String_Test.java | 11 +- .../Values_AreEqual_UUID_And_String_Test.java | 8 +- ...alues_AreEqual_Value_And_Boolean_Test.java | 7 +- .../Values_AreEqual_Value_And_Bytes_Test.java | 13 +- ...ues_AreEqual_Value_And_Character_Test.java | 3 +- ...AreEqual_Value_And_DateTimeValue_Test.java | 91 +- ...ues_AreEqual_Value_And_DateValue_Test.java | 11 +- ...Values_AreEqual_Value_And_Number_Test.java | 11 +- ...Values_AreEqual_Value_And_Object_Test.java | 104 +- ...Values_AreEqual_Value_And_String_Test.java | 7 +- .../Values_AreEqual_Value_And_UUID_Test.java | 10 +- .../Values_AreEqual_Value_TimeValue_Test.java | 11 +- .../Values_Compare_Value_And_Number_Test.java | 11 +- .../db/util/Values_Constructor_Test.java | 20 +- ...GetOutputFromValueInFrontOfClass_Test.java | 51 +- ...OutputFromValueInFrontOfExpected_Test.java | 39 +- ...tionsFromValuesInFrontOfExpected_Test.java | 133 +- 794 files changed, 28071 insertions(+), 27121 deletions(-) create mode 100644 .editorconfig diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 00000000..198309d4 --- /dev/null +++ b/.editorconfig @@ -0,0 +1,26 @@ +# EditorConfig: https://editorconfig.org/ + +# top-most EditorConfig file +root = true + +# Unix-style newlines with a newline ending every file +[*] +end_of_line = lf +insert_final_newline = true +charset = utf-8 + +# 2 space indentation for java, xml and yml files +[*.{java,xml,yml,sh}] +indent_style = space +indent_size = 2 + +[*.java] +# $ = static, | = blank line +ij_java_imports_layout = $*, |, java.**, javax.**, |, org.**, | * +# no * imports +ij_java_class_count_to_use_import_on_demand = 999 +ij_java_names_count_to_use_import_on_demand = 999 + +# Maven POM code convention +[pom.xml] +max_line_length = 205 diff --git a/pom.xml b/pom.xml index 37a6df0e..b5681bb3 100644 --- a/pom.xml +++ b/pom.xml @@ -1,233 +1,233 @@ - 4.0.0 + 4.0.0 - - org.assertj - assertj-parent - 3.26.3 - + + org.assertj + assertj-parent + 3.26.3 + - assertj-db - 3.0.0-SNAPSHOT + assertj-db + 3.0.0-SNAPSHOT - AssertJ-DB - Assertions for database - AssertJ-DB - Rich and fluent assertions for testing with database - 2015 + AssertJ-DB - Assertions for database + AssertJ-DB - Rich and fluent assertions for testing with database + 2015 - - scm:git:ssh://git@github.com/assertj/assertj-db.git - scm:git:ssh://git@github.com/assertj/assertj-db.git - git@github.com:assertj/assertj-db - HEAD - + + scm:git:ssh://git@github.com/assertj/assertj-db.git + scm:git:ssh://git@github.com/assertj/assertj-db.git + git@github.com:assertj/assertj-db + HEAD + - - github - https://github.com/assertj/assertj-db/issues - + + github + https://github.com/assertj/assertj-db/issues + - - --allow-script-in-comments + + --allow-script-in-comments - - https://sonarcloud.io - assertj - joel-costigliola_assertj-db - + + https://sonarcloud.io + assertj + joel-costigliola_assertj-db + - - - org.assertj - assertj-core - 3.21.0 - - - net.bytebuddy - byte-buddy - 1.12.1 - true - - - junit - junit - test - - - org.springframework - spring-test - 5.3.39 - test - - - org.springframework - spring-context - 5.3.39 - test - - - org.springframework - spring-jdbc - 5.3.39 - test - - - com.h2database - h2 - 1.4.200 - test - - - org.hsqldb - hsqldb - 2.7.3 - test - - - org.xerial - sqlite-jdbc - 3.34.0 - test - - - org.apache.commons - commons-dbcp2 - 2.12.0 - test - - - com.ninja-squad - DbSetup - 2.1.0 - test - - - - - - org.apache.maven.plugins - maven-compiler-plugin - - - org.apache.maven.plugins - maven-shade-plugin - 3.2.4 - - - package - - shade - - - true - - - net.bytebuddy:byte-buddy - - - - - net.bytebuddy - org.assertj.db.internal.bytebuddy - - - - - net.bytebuddy:byte-buddy - - META-INF/** - - - - - - - - - - org.apache.maven.plugins - maven-dependency-plugin - - - unpack-shade - package - - unpack - - - - - ${project.groupId} - ${project.artifactId} - ${project.version} - - - ${project.build.directory}/classes - - - - - - - maven-surefire-plugin - - ${argLine} - true - - - - org.apache.maven.plugins - maven-javadoc-plugin - - - src/main/javadoc/assertj-javadoc.css - - + + org.assertj + assertj-core + 3.21.0 + + + net.bytebuddy + byte-buddy + 1.12.1 + true + + + junit + junit + test + + + org.springframework + spring-test + 5.3.39 + test + + + org.springframework + spring-context + 5.3.39 + test + + + org.springframework + spring-jdbc + 5.3.39 + test + + + com.h2database + h2 + 1.4.200 + test + + + org.hsqldb + hsqldb + 2.7.3 + test + + + org.xerial + sqlite-jdbc + 3.34.0 + test + + + org.apache.commons + commons-dbcp2 + 2.12.0 + test + + + com.ninja-squad + DbSetup + 2.1.0 + test + + + + + + org.apache.maven.plugins + maven-compiler-plugin + + + org.apache.maven.plugins + maven-shade-plugin + 3.2.4 + + + package + + shade + + + true + + + net.bytebuddy:byte-buddy + + + + + net.bytebuddy + org.assertj.db.internal.bytebuddy + + + + + net.bytebuddy:byte-buddy + + META-INF/** + + + + + + + + + + org.apache.maven.plugins + maven-dependency-plugin + + + unpack-shade + package + + unpack + + + + + ${project.groupId} + ${project.artifactId} + ${project.version} + + + ${project.build.directory}/classes + + + + + + + maven-surefire-plugin + + ${argLine} + true + + + + org.apache.maven.plugins + maven-javadoc-plugin + + + src/main/javadoc/assertj-javadoc.css + + ]]> - -