This repository has been archived on 2025-03-12. 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/FullyUsedArrayProcessorTest.java

10 lines
No EOL
275 B
Java

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