1 /*
2 * SPDX-FileCopyrightText: Copyright (c) 2011-2026 Yegor Bugayenko
3 * SPDX-License-Identifier: MIT
4 */
5 package com.qulice.maven;
6
7 import org.junit.jupiter.api.Test;
8
9 /**
10 * Test case for {@link SvnPropertiesValidator}.
11 * @since 0.3
12 */
13 final class SvnPropertiesValidatorTest {
14
15 /**
16 * Let's simulate the property reading request.
17 * @throws Exception If something goes wrong
18 */
19 @Test
20 void testSimulatesSvnPropgetRequest() throws Exception {
21 final MavenValidator validator = new SvnPropertiesValidator();
22 final MavenEnvironment env = new MavenEnvironmentMocker().mock();
23 validator.validate(env);
24 }
25 }