This is an automated email from the ASF dual-hosted git repository. olli pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/sling-org-apache-sling-testing-paxexam.git
commit 48ca8712fd9b2da3f410eb08e8869eb96b5876d6 Author: Oliver Lietz <[email protected]> AuthorDate: Sat Apr 4 09:46:49 2026 +0200 SLING-13156 Provide mail Option add missing test --- .../paxexam/it/tests/SlingOptionsMailIT.java | 50 ++++++++++++++++++++++ 1 file changed, 50 insertions(+) diff --git a/src/test/java/org/apache/sling/testing/paxexam/it/tests/SlingOptionsMailIT.java b/src/test/java/org/apache/sling/testing/paxexam/it/tests/SlingOptionsMailIT.java new file mode 100644 index 0000000..2a1d09f --- /dev/null +++ b/src/test/java/org/apache/sling/testing/paxexam/it/tests/SlingOptionsMailIT.java @@ -0,0 +1,50 @@ +/* + * 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.sling.testing.paxexam.it.tests; + +import org.apache.sling.testing.paxexam.it.SlingOptionsTestSupport; +import org.junit.Test; +import org.junit.runner.RunWith; +import org.ops4j.pax.exam.Configuration; +import org.ops4j.pax.exam.Option; +import org.ops4j.pax.exam.junit.PaxExam; +import org.ops4j.pax.exam.spi.reactors.ExamReactorStrategy; +import org.ops4j.pax.exam.spi.reactors.PerClass; + +import static org.apache.sling.testing.paxexam.SlingOptions.mail; +import static org.ops4j.pax.exam.CoreOptions.options; + +@RunWith(PaxExam.class) +@ExamReactorStrategy(PerClass.class) +public class SlingOptionsMailIT extends SlingOptionsTestSupport { + + @Configuration + public Option[] configuration() { + return options( + baseConfiguration(), + mail() + ); + } + + @Test + @SuppressWarnings("java:S2699") + public void test() { + } + +}
