You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by gg...@apache.org on 2022/12/12 01:13:19 UTC

[commons-crypto] branch master updated: Add test

This is an automated email from the ASF dual-hosted git repository.

ggregory pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/commons-crypto.git


The following commit(s) were added to refs/heads/master by this push:
     new 6a159f4  Add test
6a159f4 is described below

commit 6a159f4ff55c5a2ce7a7b6e16f5467ca59cc2bcd
Author: Gary Gregory <ga...@gmail.com>
AuthorDate: Sun Dec 11 20:13:15 2022 -0500

    Add test
---
 .../apache/commons/crypto/jna/OpenSslJnaTest.java  | 28 ++++++++++++++++++++++
 1 file changed, 28 insertions(+)

diff --git a/src/test/java/org/apache/commons/crypto/jna/OpenSslJnaTest.java b/src/test/java/org/apache/commons/crypto/jna/OpenSslJnaTest.java
new file mode 100644
index 0000000..96911e5
--- /dev/null
+++ b/src/test/java/org/apache/commons/crypto/jna/OpenSslJnaTest.java
@@ -0,0 +1,28 @@
+/*
+ * 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.
+ */
+package org.apache.commons.crypto.jna;
+
+import org.junit.jupiter.api.Test;
+
+public class OpenSslJnaTest {
+
+    @Test
+    public void testMain() throws Throwable {
+        OpenSslJna.main(new String[0]);
+    }
+}