blob: 3ee51238867e210b4bfc8ba6e24572f11b544ea2 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2016 Ericsson
*
* All rights reserved. This program and the accompanying materials are
* made available under the terms of the Eclipse Public License 2.0 which
* accompanies this distribution, and is available at
* https://www.eclipse.org/legal/epl-2.0/
*
* SPDX-License-Identifier: EPL-2.0
*******************************************************************************/
package org.eclipse.tracecompass.segmentstore.core.tests;
import org.eclipse.jdt.annotation.NonNull;
import org.eclipse.tracecompass.internal.segmentstore.core.arraylist.LazyArrayListStore;
import org.eclipse.tracecompass.segmentstore.core.ISegmentStore;
/**
* Unit tests for intersecting elements in an LazyArrayListStore
*
* @author Matthew Khouzam
*/
public class LazyArrayListStoreTest extends AbstractTestSegmentStore {
@Override
protected ISegmentStore<@NonNull TestSegment> getSegmentStore() {
return new LazyArrayListStore<>();
}
@Override
protected ISegmentStore<@NonNull TestSegment> getSegmentStore(@NonNull TestSegment @NonNull [] data) {
return new LazyArrayListStore<>(data);
}
}