From 7f0afc84eb75dc58ea49de1af453c7a37895b112 Mon Sep 17 00:00:00 2001 From: athultr1997 Date: Mon, 1 Jan 2024 14:50:08 +0530 Subject: [PATCH] Fixes failure when building trino-server alone Added a dummy test in trino-server --- .../test/java/io/trino/server/TestDummy.java | 22 +++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 core/trino-server/src/test/java/io/trino/server/TestDummy.java diff --git a/core/trino-server/src/test/java/io/trino/server/TestDummy.java b/core/trino-server/src/test/java/io/trino/server/TestDummy.java new file mode 100644 index 000000000000..b560df431cb6 --- /dev/null +++ b/core/trino-server/src/test/java/io/trino/server/TestDummy.java @@ -0,0 +1,22 @@ +/* + * 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 io.trino.server; + +import org.junit.jupiter.api.Test; + +public class TestDummy +{ + @Test + public void buildRequiresTestToExist() {} +}