51 lines
1.5 KiB
Java
51 lines
1.5 KiB
Java
package com.baeldung.reflections;
|
|
|
|
import static org.junit.jupiter.api.Assertions.assertFalse;
|
|
|
|
import org.junit.jupiter.api.Test;
|
|
|
|
public class ReflectionsUnitTest {
|
|
|
|
@Test
|
|
public void givenTypeThenGetAllSubTypes() {
|
|
ReflectionsApp reflectionsApp = new ReflectionsApp();
|
|
assertFalse(reflectionsApp.getReflectionsSubTypes()
|
|
.isEmpty());
|
|
}
|
|
|
|
@Test
|
|
public void givenTypeAndUsingBuilderThenGetAllSubTypes() {
|
|
ReflectionsApp reflectionsApp = new ReflectionsApp();
|
|
assertFalse(reflectionsApp.getReflectionsSubTypesUsingBuilder()
|
|
.isEmpty());
|
|
}
|
|
|
|
@Test
|
|
public void givenAnnotationThenGetAllAnnotatedMethods() {
|
|
ReflectionsApp reflectionsApp = new ReflectionsApp();
|
|
assertFalse(reflectionsApp.getDateDeprecatedMethods()
|
|
.isEmpty());
|
|
}
|
|
|
|
@Test
|
|
public void givenAnnotationThenGetAllAnnotatedConstructors() {
|
|
ReflectionsApp reflectionsApp = new ReflectionsApp();
|
|
assertFalse(reflectionsApp.getDateDeprecatedConstructors()
|
|
.isEmpty());
|
|
}
|
|
|
|
@Test
|
|
public void givenParamTypeThenGetAllMethods() {
|
|
ReflectionsApp reflectionsApp = new ReflectionsApp();
|
|
assertFalse(reflectionsApp.getMethodsWithDateParam()
|
|
.isEmpty());
|
|
}
|
|
|
|
@Test
|
|
public void givenReturnTypeThenGetAllMethods() {
|
|
ReflectionsApp reflectionsApp = new ReflectionsApp();
|
|
assertFalse(reflectionsApp.getMethodsWithVoidReturn()
|
|
.isEmpty());
|
|
}
|
|
}
|