mirror of
https://codeberg.org/PGPainless/sop-java.git
synced 2025-09-08 17:59:43 +02:00
13 lines
373 B
Java
13 lines
373 B
Java
// SPDX-FileCopyrightText: 2023 Paul Schaub <vanitasvitae@fsfe.org>
|
|
//
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
|
|
package sop.testsuite.external.operation;
|
|
|
|
import org.junit.jupiter.api.condition.EnabledIf;
|
|
import sop.testsuite.operation.VersionTest;
|
|
|
|
@EnabledIf("sop.testsuite.operation.AbstractSOPTest#hasBackends")
|
|
public class ExternalVersionTest extends VersionTest {
|
|
|
|
}
|