|
1 | 1 | /**
|
2 | 2 | * Copyright 2025 the original author or authors.
|
3 |
| - * |
4 |
| - * Licensed under the Apache License, Version 2.0 (the "License"); |
5 |
| - * you may not use this file except in compliance with the License. |
6 |
| - * You may obtain a copy of the License at |
7 |
| - * |
| 3 | + * <p> |
| 4 | + * Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except |
| 5 | + * in compliance with the License. You may obtain a copy of the License at |
| 6 | + * <p> |
8 | 7 | * https://www.apache.org/licenses/LICENSE-2.0
|
9 |
| - * |
10 |
| - * Unless required by applicable law or agreed to in writing, software |
11 |
| - * distributed under the License is distributed on an "AS IS" BASIS, |
12 |
| - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
13 |
| - * See the License for the specific language governing permissions and |
14 |
| - * limitations under the License. |
| 8 | + * <p> |
| 9 | + * Unless required by applicable law or agreed to in writing, software distributed under the License |
| 10 | + * is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express |
| 11 | + * or implied. See the License for the specific language governing permissions and limitations under |
| 12 | + * the License. |
15 | 13 | */
|
16 | 14 | package io.micrometer.release.train;
|
17 | 15 |
|
18 | 16 | import io.micrometer.release.train.TrainOptions.ProjectSetup;
|
| 17 | +import org.junit.jupiter.api.Test; |
19 | 18 | import org.junit.jupiter.params.ParameterizedTest;
|
20 | 19 | import org.junit.jupiter.params.provider.Arguments;
|
21 | 20 | import org.junit.jupiter.params.provider.MethodSource;
|
|
25 | 24 |
|
26 | 25 | import static io.micrometer.release.train.TrainOptions.Project.*;
|
27 | 26 | import static org.assertj.core.api.BDDAssertions.then;
|
| 27 | +import static org.assertj.core.api.BDDAssertions.thenThrownBy; |
28 | 28 |
|
29 | 29 | class TrainOptionsTests {
|
30 | 30 |
|
31 | 31 | TrainOptions trainOptions = new TrainOptions();
|
32 | 32 |
|
| 33 | + @Test |
| 34 | + void should_throw_exception_for_no_versions() { |
| 35 | + thenThrownBy(() -> trainOptions.parse("foo", "", null, "", null)).isInstanceOf(IllegalStateException.class) |
| 36 | + .hasMessage("At least one st of versions must be set..."); |
| 37 | + } |
| 38 | + |
33 | 39 | @ParameterizedTest(name = "ghOrg <{0}>, contextProp <{1}>, microm <{2}>, tracing <{3}>, docsGen <{4}>")
|
34 | 40 | @MethodSource("should_parse_entries_to_project_setup_args")
|
35 | 41 | void should_parse_entries_to_project_setup(String ghOrg, String contextPropagationVersions,
|
|
0 commit comments