(String[] args)
| 111 | System.out.println(ll); |
| 112 | } |
| 113 | public static void main(String[] args) { |
| 114 | // Make and fill a new list each time: |
| 115 | basicTest(new LinkedList<>(LIST)); |
| 116 | basicTest(new ArrayList<>(LIST)); |
| 117 | iterMotion(new LinkedList<>(LIST)); |
| 118 | iterMotion(new ArrayList<>(LIST)); |
| 119 | iterManipulation(new LinkedList<>(LIST)); |
| 120 | iterManipulation(new ArrayList<>(LIST)); |
| 121 | testVisual(new LinkedList<>(LIST)); |
| 122 | testLinkedList(); |
| 123 | } |
| 124 | } |
| 125 | /* Output: |
| 126 | [AliceBlue, AntiqueWhite, Aquamarine, Azure, Beige, |
nothing calls this directly
no test coverage detected