diff --git a/pom.xml b/pom.xml index d7aecad..7547f2b 100644 --- a/pom.xml +++ b/pom.xml @@ -2,7 +2,7 @@ @@ -87,18 +87,18 @@ io.github.dan2097 jna-inchi-all - 1.2.1 + 1.3.1 org.apache.commons commons-lang3 - 3.11 + 3.20.0 uk.ac.cam.ch.opsin opsin-core - 2.8.0 + 2.9.0 org.apache.logging.log4j @@ -109,7 +109,7 @@ com.fasterxml.jackson.core jackson-annotations - 2.9.9 + 2.21 provided diff --git a/src/test/java/InchiKeyTest.java b/src/test/java/gov/nih/ncats/inchikey/InchiKeyTest.java similarity index 84% rename from src/test/java/InchiKeyTest.java rename to src/test/java/gov/nih/ncats/inchikey/InchiKeyTest.java index 7fa0cf9..2ba7766 100644 --- a/src/test/java/InchiKeyTest.java +++ b/src/test/java/gov/nih/ncats/inchikey/InchiKeyTest.java @@ -1,20 +1,4 @@ -/* - * NCATS-MOLWITCH - * - * Copyright 2025 NIH/NCATS - * - * 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. - */ +package gov.nih.ncats.inchikey; import gov.nih.ncats.molwitch.inchi.InChiResult; import gov.nih.ncats.molwitch.inchi.Inchi; @@ -39,6 +23,7 @@ public void nullConstructorThrowsNull(){ @Test public void notValidInchiKeyShouldThrowIllegalArg(){ + System.out.println("hello from test"); expectedException.expect(IllegalArgumentException.class); new InchiKey("not valid inchi key"); }