This repository has been archived on 2025-01-16. You can view files and clone it, but cannot push or open issues or pull requests.
AuD-2021-Exam-Prep/test/aud/exam/prep/array/IterativeFullyUsedArrayProcessorTest.java

10 lines
302 B
Java
Raw Normal View History

package aud.exam.prep.array;
import aud.exam.prep.SequenceProcessorTest;
public class IterativeFullyUsedArrayProcessorTest extends SequenceProcessorTest<FullyUsedArray<Integer>> {
protected IterativeFullyUsedArrayProcessorTest() {
super(new IterativeFullyUsedArrayProcessor<>());
}
}