Skip to content

Commit d59ed1d

Browse files
committed
Fix Checkstyle findings.
1 parent 11b5e68 commit d59ed1d

File tree

1 file changed

+16
-2
lines changed

1 file changed

+16
-2
lines changed

common/util/src/test/java/org/eclipse/dataspaceconnector/common/validator/UuidValidatorTest.java

+16-2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,17 @@
1+
/*
2+
* Copyright (c) 2022 ZF Friedrichshafen AG
3+
*
4+
* This program and the accompanying materials are made available under the
5+
* terms of the Apache License, Version 2.0 which is available at
6+
* https://www.apache.org/licenses/LICENSE-2.0
7+
*
8+
* SPDX-License-Identifier: Apache-2.0
9+
*
10+
* Contributors:
11+
* ZF Friedrichshafen AG - Initial Implementation
12+
*
13+
*/
14+
115
package org.eclipse.dataspaceconnector.common.validator;
216

317
import org.junit.jupiter.api.Test;
@@ -11,13 +25,13 @@ public class UuidValidatorTest {
1125
UuidValidator uuidValidator = new UuidValidator();
1226

1327
@Test
14-
void isValid_valid_UUID() {
28+
void isValid_valid_uuid() {
1529
String uuid = UUID.randomUUID().toString();
1630
assertThat(uuidValidator.isValid(uuid, null)).isTrue();
1731
}
1832

1933
@Test
20-
void isValid_invalid_UUID() {
34+
void isValid_invalid_uuid() {
2135
String uuid = "invalid-uuid-string";
2236
assertThat(uuidValidator.isValid(uuid, null)).isFalse();
2337
}

0 commit comments

Comments
 (0)