blob: 5e4bcbb4b83d1e711cc6a220d8bd81829c4c1277 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2015 Efficios Inc., Alexaandre Montplaisir
*
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*******************************************************************************/
package org.eclipse.tracecompass.testtraces.ctf;
import static org.junit.Assert.assertNotNull;
import org.junit.Test;
/**
* Basic tests for the CtfTestTraces
*/
public class CtfTestTraceTest {
/**
* Test that all configured traces are present.
*/
@Test
public void testTracesExist() {
for (CtfTestTrace trace : CtfTestTrace.values()) {
assertNotNull(trace.getTraceURL());
}
}
}