Created
April 6, 2020 18:41
-
-
Save elbosso/ed543f9defcd821174ef1299c1d6ab39 to your computer and use it in GitHub Desktop.
Concrete test class derived from https://gist.github.com/elbosso/98e4dd2ee817e83c1c4136f9c980f16c
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
* To change this license header, choose License Headers in Project Properties. | |
* To change this template file, choose Tools | Templates | |
* and open the template in the editor. | |
*/ | |
package what.ever.floats.your.boat; | |
public class TestLinkedList extends what.ever.floats.your.boat.BaseTestList<java.util.LinkedList<Integer> > | |
{ | |
private final static org.apache.log4j.Logger CLASS_LOGGER = org.apache.log4j.Logger.getLogger(TestLinkedList.class); | |
protected java.util.LinkedList<Integer> createInstanceFromList(java.util.List<Integer> param) | |
{ | |
return new java.util.LinkedList(param); | |
} | |
protected java.util.LinkedList<Integer> createInstance() | |
{ | |
return new java.util.LinkedList(); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment