Skip to content

Commit

Permalink
Fix unittests
Browse files Browse the repository at this point in the history
  • Loading branch information
rfscholte committed Oct 22, 2023
1 parent ef0dc75 commit fa1d086
Showing 1 changed file with 5 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2,24 +2,22 @@

import com.thoughtworks.qdox.library.ClassLibrary;
import com.thoughtworks.qdox.library.SortedClassLibraryBuilder;
import com.thoughtworks.qdox.model.impl.DefaultJavaType;
import com.thoughtworks.qdox.model.impl.DefaultJavaWildcardType;
import com.thoughtworks.qdox.type.TypeResolver;
import org.junit.Before;
import org.junit.Test;

import java.lang.reflect.Field;
import static org.junit.jupiter.api.Assertions.assertEquals;

import java.util.ArrayList;
import java.util.Collections;
import java.util.List;

import static org.junit.Assert.assertEquals;
import org.junit.jupiter.api.BeforeEach;
import org.junit.jupiter.api.Test;

public abstract class JavaWildcardTypeTest<T extends JavaWildcardType>
{
private TypeResolver typeResolver;

@Before
@BeforeEach
public void setUp() {
ClassLibrary classLibrary = new SortedClassLibraryBuilder().appendDefaultClassLoaders().getClassLibrary();
List<String> typeList = new ArrayList<String>();
Expand Down

0 comments on commit fa1d086

Please sign in to comment.