Feature bael 5253 (#11526)
* BAEL-5032 Swagger to PDF * BAEL-5032 added lombok as dependency * BAEL-5253 moving the tests to other module * renaming the test class * Update pom.xml * Update pom.xml * Update pom.xml * Delete pom.xml * Create pom.xml Co-authored-by: Matea Pejčinović <matea.pejcinovic@intellexi.hr>
This commit is contained in:
parent
0d45985435
commit
719c4e4e0b
|
@ -24,6 +24,11 @@
|
|||
<artifactId>commons-validator</artifactId>
|
||||
<version>${validator.version}</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>com.google.guava</groupId>
|
||||
<artifactId>guava</artifactId>
|
||||
<version>${guava.version}</version>
|
||||
</dependency>
|
||||
</dependencies>
|
||||
|
||||
<build>
|
||||
|
@ -49,8 +54,8 @@
|
|||
</build>
|
||||
|
||||
<properties>
|
||||
<guava.version>28.1-jre</guava.version>
|
||||
<guava.version>31.0.1-jre</guava.version>
|
||||
<validator.version>1.7</validator.version>
|
||||
</properties>
|
||||
|
||||
</project>
|
||||
</project>
|
||||
|
|
|
@ -1,15 +1,15 @@
|
|||
package com.baeldung.isuppercase;
|
||||
|
||||
import com.google.common.base.Ascii;
|
||||
import org.junit.jupiter.api.Assertions;
|
||||
import org.junit.jupiter.api.Test;
|
||||
import org.junit.jupiter.api.TestInstance;
|
||||
import com.google.common.base.Ascii;
|
||||
|
||||
import static org.hamcrest.MatcherAssert.assertThat;
|
||||
import static org.hamcrest.Matchers.matchesPattern;
|
||||
|
||||
@TestInstance(TestInstance.Lifecycle.PER_CLASS)
|
||||
public class StringFirstCharacterUppercase {
|
||||
public class StringFirstCharacterUppercaseUnitTest {
|
||||
|
||||
@Test
|
||||
public void givenString_whenCheckingWithCharacterIsUpperCase_thenStringCapitalized() {
|
|
@ -40,4 +40,4 @@
|
|||
<springfox.version>3.0.0</springfox.version>
|
||||
</properties>
|
||||
|
||||
</project>
|
||||
</project>
|
||||
|
|
Loading…
Reference in New Issue