Skip to content

Commit 48cd6f8

Browse files
Doha2012Eugen
authored andcommitted
Fix test names (eugenp#1853)
* upgrade to spring boot 1.5.2 * add full update to REST API * modify ratings controller * upgrade herold * fix integration test * fix integration test * minor fix * fix integration test * fix integration test * minor cleanup * minor cleanup * remove log4j properties * use standard logbook.xml * remove log4j dependencies * remove commons-logging * merge * fix conflict * exclude commons-logging dependency * cleanup * minor fix * minor fix * fix dependency issues * Revert "fix dependency issues" This reverts commit 83bf1f9. * fix dependency issues * minor fix * minor fix * minor fix * cleanup generated files * fix commons-logging issue * add parent to pom * cleanup parent dependencies * cleanup pom * cleanup pom * add missing parent * fix logging issue * fix test names
1 parent 5a58aac commit 48cd6f8

369 files changed

Lines changed: 405 additions & 405 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

JGit/src/test/java/com/baeldung/jgit/JGitBugTest.java renamed to JGit/src/test/java/com/baeldung/jgit/JGitBugIntegrationTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
/**
1212
* Tests which show issues with JGit that we reported upstream.
1313
*/
14-
public class JGitBugTest {
14+
public class JGitBugIntegrationTest {
1515
@Test
1616
public void testRevWalkDisposeClosesReader() throws IOException {
1717
try (Repository repo = Helper.openJGitRepository()) {

JGit/src/test/java/com/baeldung/jgit/porcelain/PorcelainTest.java renamed to JGit/src/test/java/com/baeldung/jgit/porcelain/PorcelainUnitTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
import org.junit.Test;
44

5-
public class PorcelainTest {
5+
public class PorcelainUnitTest {
66
@Test
77
public void runSamples() throws Exception {
88
// simply call all the samples to see any severe problems with the samples

Twitter4J/src/test/java/com/baeldung/ApplicationTest.java renamed to Twitter4J/src/test/java/com/baeldung/ApplicationIntegrationTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99

1010
import twitter4j.TwitterException;
1111

12-
public class ApplicationTest {
12+
public class ApplicationIntegrationTest {
1313

1414
/**
1515
* In order run this jUnit test you need to configure your API details in the twitter4j.properties

algorithms/src/test/java/com/baeldung/algorithms/primechecker/PrimeCheckerTest.java renamed to algorithms/src/test/java/com/baeldung/algorithms/primechecker/PrimeCheckerUnitTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
import static org.junit.Assert.assertFalse;
66
import static org.junit.Assert.assertTrue;
77

8-
public class PrimeCheckerTest {
8+
public class PrimeCheckerUnitTest {
99

1010
private final BigIntegerPrimeChecker primeChecker = new BigIntegerPrimeChecker();
1111

annotations/annotation-user/src/test/java/com/baeldung/annotation/PersonBuilderTest.java renamed to annotations/annotation-user/src/test/java/com/baeldung/annotation/PersonBuilderUnitTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
import static org.junit.Assert.assertEquals;
66

7-
public class PersonBuilderTest {
7+
public class PersonBuilderUnitTest {
88

99
@Test
1010
public void whenBuildPersonWithBuilder_thenObjectHasPropertyValues() {

apache-bval/src/test/java/com/baeldung/validation/ValidationTest.java renamed to apache-bval/src/test/java/com/baeldung/validation/ValidationIntegrationTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717

1818
import com.baeldung.model.User;
1919

20-
public class ValidationTest {
20+
public class ValidationIntegrationTest {
2121
private static ValidatorFactory validatorFactory;
2222
private static Validator validator;
2323

apache-cxf/cxf-aegis/src/test/java/com/baeldung/cxf/aegis/BaeldungTest.java renamed to apache-cxf/cxf-aegis/src/test/java/com/baeldung/cxf/aegis/BaeldungIntegrationTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
import org.apache.cxf.aegis.AegisWriter;
2727
import org.apache.cxf.aegis.type.AegisType;
2828

29-
public class BaeldungTest {
29+
public class BaeldungIntegrationTest {
3030
private AegisContext context;
3131
private String fileName = "baeldung.xml";
3232

apache-poi/src/test/java/com/baeldung/jexcel/JExcelTest.java renamed to apache-poi/src/test/java/com/baeldung/jexcel/JExcelIntegrationTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
import org.junit.Before;
2222
import org.junit.After;
2323

24-
public class JExcelTest {
24+
public class JExcelIntegrationTest {
2525

2626
private JExcelHelper jExcelHelper;
2727
private static String FILE_NAME = "temp.xls";

apache-poi/src/test/java/com/baeldung/poi/excel/ExcelTest.java renamed to apache-poi/src/test/java/com/baeldung/poi/excel/ExcelIntegrationTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
import org.junit.Before;
1919
import org.junit.After;
2020

21-
public class ExcelTest {
21+
public class ExcelIntegrationTest {
2222

2323
private ExcelPOIHelper excelPOIHelper;
2424
private static String FILE_NAME = "temp.xlsx";

apache-poi/src/test/java/com/baeldung/poi/word/WordTest.java renamed to apache-poi/src/test/java/com/baeldung/poi/word/WordIntegrationTest.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,12 +14,12 @@
1414
import org.junit.BeforeClass;
1515
import org.junit.Test;
1616

17-
public class WordTest {
17+
public class WordIntegrationTest {
1818
static WordDocument wordDocument;
1919

2020
@BeforeClass
2121
public static void generateMSWordFile() throws Exception {
22-
WordTest.wordDocument = new WordDocument();
22+
WordIntegrationTest.wordDocument = new WordDocument();
2323
wordDocument.handleSimpleDoc();
2424
}
2525

0 commit comments

Comments
 (0)