tmf: Add ellipses to Synchronize Traces action
[deliverable/tracecompass.git] / analysis / org.eclipse.tracecompass.analysis.timing.core.tests / src / org / eclipse / tracecompass / analysis / timing / core / tests / store / ArrayListStoreTest.java
CommitLineData
3dde9149
MK
1/*******************************************************************************
2 * Copyright (c) 2016 Ericsson
3 *
4 * All rights reserved. This program and the accompanying materials are
5 * made available under the terms of the Eclipse Public License v1.0 which
6 * accompanies this distribution, and is available at
7 * http://www.eclipse.org/legal/epl-v10.html
8 *******************************************************************************/
9
10package org.eclipse.tracecompass.analysis.timing.core.tests.store;
11
3dde9149
MK
12import org.eclipse.jdt.annotation.NonNull;
13import org.eclipse.tracecompass.internal.analysis.timing.core.store.ArrayListStore;
3dde9149
MK
14import org.eclipse.tracecompass.segmentstore.core.ISegment;
15import org.eclipse.tracecompass.segmentstore.core.ISegmentStore;
3dde9149
MK
16
17/**
18 * Unit tests for intersecting elements in an ArrayListStore
19 *
3dde9149
MK
20 * @author France Lapointe Nguyen
21 * @author Matthew Khouzam
22 */
aaa6f547 23public class ArrayListStoreTest extends AbstractTestSegmentStore {
3dde9149 24
aaa6f547
MK
25 @Override
26 protected ISegmentStore<@NonNull ISegment> getSegmentStore() {
27 return new ArrayListStore<>();
3dde9149
MK
28 }
29}
This page took 0.029163 seconds and 5 git commands to generate.